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 everyone.
I've been trying to run this where query in GraphQL using the library:
"where": { "_and": [ { "config": { "_contains": { "steps": [ { "sources": [ { "integration_id": 784 } ] } ] } } } ] }
When I use SelectInput, I can't make ra-data-hasura put the [] between steps and sources:
<SelectInput label="Integration ID" source="config@_contains.steps.sources.integration_id" choices={integrationsPerOrg} alwaysOn />
The code generated by this source is:
"where": { "_and": [ { "config": { "_contains": { "steps": { "sources": { "integration_id": 784 } } } } } ] }
What I should do to generate the right where query in the first example?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello everyone.
I've been trying to run this where query in GraphQL using the library:
When I use SelectInput, I can't make ra-data-hasura put the [] between steps and sources:
The code generated by this source is:
What I should do to generate the right where query in the first example?
The text was updated successfully, but these errors were encountered: