-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
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
How to support querying for null? #116
Comments
I haven't run into this problem yet so there's no official solution from the library. |
Right now I'm using special Boolean arguments, then hooking them up in the |
looks like null literals are part of the relay spec now. |
@legomind Indeed |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
GraphQL doesn't have a
null
literal, it relies on the defaultValue for the args input field.Is there a recommended literal value in graphql-sequelize that is used to interpret as null by the
resolver
function? What's the best way to support querying for null?The text was updated successfully, but these errors were encountered: