5 ms·
You are probably correct. The server-side GQL implementations I have worked on expect only POST requests, and expect each requests' body to contain a query or
by tylerpachal 9y ago
You are probably correct. The server-side GQL implementations I have worked on expect only POST requests, and expect each requests' body to contain a query or a mutation.
- baconomatic 9y agoGood point, looks like my implementation of GraphQL was't correct. Thanks!
- gschier 9y agoGraphQL actually does support GET requests, but most clients (like Apollo) don't support it out of the box. http://graphql.org/learn/serving-over-http/ http://graphql.org/learn/serving-over-http/
- baconomatic 9y agoThat's what I had though, was just surprised by the lack of client support.