We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm trying to do a SELECT query in GQL with a WHERE filter of field = NULL.
It works on the live version of GQL on AppEngine, but it don't work locally using this parser.
I don't mind implementing this if someone can point me in the right direction please?
Regards, iamacarpet
The text was updated successfully, but these errors were encountered:
This maybe resolved with #164
Sorry, something went wrong.
Yes, this is resolved with #164. You will not be able to directly query like this:
... WHERE field IS NULL
... WHERE field = NULL
But you'll be able to query for NULL via parameter binding as seen here: https://github.com/tomwalder/php-gds/pull/164/files#diff-796607b903aea97a7e1d0226ce4cbf55R810 - e.g.:
NULL
... WHERE field = @null and then pass through 'null' = null
... WHERE field = @null
'null' = null
No branches or pull requests
Hello,
I'm trying to do a SELECT query in GQL with a WHERE filter of field = NULL.
It works on the live version of GQL on AppEngine, but it don't work locally using this parser.
I don't mind implementing this if someone can point me in the right direction please?
Regards,
iamacarpet
The text was updated successfully, but these errors were encountered: