You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"query category($id: Int!, $pageSize: Int!, $currentPage: Int!) {
category(id: $id) {
id
description
name
}
products(pageSize: $pageSize, currentPage: $currentPage) {
items {
id
name
}
}
}
"
Is there any way I could write it using this library? I am able to do so for the individual category and product queries, but I wasn't able to do this for the full example, where params int he query are passed down in different trees.
The text was updated successfully, but these errors were encountered:
Suppose I have a gql query that looks like this:
Is there any way I could write it using this library? I am able to do so for the individual
category
andproduct
queries, but I wasn't able to do this for the full example, where params int he query are passed down in different trees.The text was updated successfully, but these errors were encountered: