Beginning GraphQL with curl and Clojure ring
Notes
A sample curl request to a GraphQL endpoint
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query": "{ hello }"}' \
http://localhost:4125/graphql
Notes
A sample curl request to a GraphQL endpoint
curl -X POST \
-H "Content-Type: application/json" \
-d '{"query": "{ hello }"}' \
http://localhost:4125/graphql