anyone knows if you can create custom graphql quer...
# prisma-whats-new
j
anyone knows if you can create custom graphql queries that always return the same data? somewhat like a regular REST endpoint?
d
For me, a big benefit of using GraphQL is that the decisions about what data is fetched from the server are made at the place where the data is needed. If you are going to just provide a fixed set of queries, why not just use a set of REST endpoints.
However, if you do want to do this kind of thing, the schema extension feature (currently in beta) does enable you to add custom queries to your graph.cool API
j
@dankent how do I access that beta feature?