How can we pass filter object #1734
Unanswered
hemendpatel
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I trying to create dynamic query and have to pass object as query parameter.
Something like:
interface wherefilter {
id: string,
assignTo: string
}
query task ($where: wherefilter) {
GetTasks (where : $where) {
assignTo
id
taskStatus
}
}
Here whereFilter type should generate using schema.
Is it possible to do this with code generator?
Beta Was this translation helpful? Give feedback.
All reactions