how to turn this:
Contact.gql('WHERE email IN :1', emails)
emails is a list of emais like: ["foo@example.com", "foo2@example.com"]
into this:
Contact.gql('WHERE email NOT IN :1', emails)
it raises an error:
BadQueryError: Parse Error: Invalid WHERE Condition at symbol NOT