-
Is it possible to query data from a linked table to summarise it and list altogether |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hello @rodbs it depends on your backend. IF you are using GraphQL, you can easily to that, but if you are using REST, and if your API doesn't support it, you will need to make 2 separate requests. First, you can get a list of users, then map these user ids to make 2nd request with |
Beta Was this translation helpful? Give feedback.
-
I've checked out the Strapi GraphQL example, and I see the graphql parameters are 'embedded' in the meta field? is this the way to build custom queries in GraphQL? |
Beta Was this translation helpful? Give feedback.
We've revised GraphQL usage to accept GraphQL operations created with
graphql-tag
package recently fornestjs-query
data provider, you can see it here: https://refine.dev/docs/data/packages/nestjs-query/We also have an open PR to do the same for Hasura: #5478
Even though we accept gqlQuery, we would still need to pass filters to the data provider in use**Many hooks.
We are open to contributions!