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
I have a JSONB column in Hasura called features with data that looks like this:
features
[ { "name": "vendor", "value": "Test Vendor" }, { "name": "brand", "value": null } ]
Note the null value in the second embedded object of the JSONB array.
value
When this gets parsed by sanitizeResource, the null value prop is stripped out of the data by this line, outputting:
sanitizeResource
[ { "name": "vendor", "value": "Test Vendor" }, { "name": "brand" } ]
The text was updated successfully, but these errors were encountered:
fix hasura#97
1d2f592
fix #97 (#99)
d22d77e
Thanks for the fix! Can you publish a new release please?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I have a JSONB column in Hasura called
features
with data that looks like this:Note the null
value
in the second embedded object of the JSONB array.When this gets parsed by
sanitizeResource
, the nullvalue
prop is stripped out of the data by this line, outputting:The text was updated successfully, but these errors were encountered: