Is the tutorial on <https://blog.graph.cool/design...
# orm-help
r
Is the tutorial on https://blog.graph.cool/designing-powerful-apis-with-graphql-query-parameters-8c44a04658a9 up to date? I can't make query parameters work at all. Are they deprecated?
n
It's up to date for Graphcool. The filter API changed for Prisma.
r
So these features are not part of the base graphQL specification?
n
the GraphQL specification only specifies the grammar for queries, not its semantics 🙂
r
I'm a bit lost. I'm using express/apollo-server. From my understanding, query parameters should work alright with that implementation
n
sure, if you implement them in your resolvers, they do
r
Oh well I thought they came out of the box for whatever type you define on the schema
I don't understand the point of the tutorial then, is it just a way to show stuff that you could implement on your resolvers?
n
the tutorial talks about the Graphcool API, where all you see there is already implemented.
you can check Prisma to see how to integrate that API in your GraphQL Server: https://github.com/graphcool/prisma/
r
That's exactly what I need!
Thank you a lot
n
haha
well, you found the right place 😄