Having usual /graphql route with cache:
router.post(`/graphql`, ({ cache, removeUpstreamResponseHeader, proxy }) => {
cache(CACHE_PAGES);
removeUpstreamResponseHeader('set-cookie');
proxy('graphql');
});
but that always says oc=cached
in x-xdn-t
response header, no oc=hit
on 2nd+ responses.
Also didn’t noticed any unique keys/ids being passed, the requests input (body, request headers) are persistent.