How to implement Filtering/Pagination in existing or new query using dynamic type schema? #6368
Unanswered
Sangeetha-Murugesan
asked this question in
Q&A
Replies: 2 comments 2 replies
-
Hi , any workaround for this or is this a feature in roadmap? |
Beta Was this translation helpful? Give feedback.
0 replies
-
hi @michaelstaib , any update ? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Product
Hot Chocolate
Is your feature request related to a problem?
This is my dynamic schema json, using this I could create an new field under existing type with arguments and response types. Along with this, I am trying to implement the filtering, pagination & sorting using fieldDescriptor.But getting the error: "No default filter convention found. Call
AddFiltering()
on the schema builder".AddFiltering() is already registerd against the schema, do we need to add the same in TypeModule file? If so, where do we have to add ?
DynamicSchema JSON:
{ "name": "saleorder_ScreenLaunch_out", "extension": true, "fields": [ { "name": "getCustDetailInfo", "arguments": [ { "name": "Customer", "type": "String" } ], "type": "[getCustDetailResponse]" } ] }
The solution you'd like
This should implement the pagination,filtering, sorting with out any errors
Beta Was this translation helpful? Give feedback.
All reactions