Y
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
nathancahill
3936 days ago
Interesting. I wonder how that plays with caching. Most caches ignore POST requests.
link
tiglionabbit
3936 days ago
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.
link
nathancahill
3936 days ago
Yeah, I guess I was thinking more about the server side.
link