Hi
I have data like this:
{"type":"tag","id":"1234"}
{"type":"hit","id":"1234"}
{"type":"tag","id":"4444"}
{"type":"tag","id":"3333"}
{"type":"hit","id":"3333"}
{"type":"tag","id":"2222"}
{"type":"hit","id":"2222"}
{"type":"tag","id":"1111"}
{"type":"tag","id":"5555"}
{"type":"hit","id":"5555"}
{"type":"tag","id":"6666"}
{"type":"hit","id":"6666"}
And I need to find all the ids that has type tag but don't have type hit
I expect the result to be:
id:1111 and id:4444
Thanks