GraphQL
Curl a GraphQL API
1 2 3 4 5 6 7 curl -0 -v -X POST https://some.api.com/graphql \ -H 'Content-Type: application/json' \ -d @- << EOF { "query": "query { …
Read →Colocation
“colocation” is a pattern wherein you keep the query/mutation as close to the consuming component as possible. In many instances, it’s in the …
Read →