GraphQL support via APQ #17
stafyniaksacha
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
I have turned on Automatic Persisted Queries in my next JS app, fetching from Strapi via GraphQL. The graphql queries are being fetched in GET and seem to work correclty, but when I inspect my redis cache I see no key saved in it. Is the redis cache being used when querying via GraphQL? |
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
-
This plugin aim to speed up HTTP requests with server side cache.
We can not cache POST requests unless we implement the corresponding RFC 2616.
The idea would be to manage Automatic Persisted Queries (AQP) via this plugin.
https://www.apollographql.com/docs/apollo-server/performance/apq/
My questions are:
Beta Was this translation helpful? Give feedback.
All reactions