Hacker News new | ask | show | jobs
by hhw3h 3936 days ago
If you look at facebook's Relay implementation the graphql queries are indeed sent as POSTs.

https://github.com/facebook/relay/blob/master/src/network-la...

1 comments

Interesting. I wonder how that plays with caching. Most caches ignore POST requests.
You don't want to use the browser's cache here. You can cache the properties in a more granular way yourself. Relay will do that for you.
Yeah, I guess I was thinking more about the server side.