Skip to content

Instantly share code, notes, and snippets.

View braincow's full-sized avatar
🐮
Off to grind few bytes together and expecting a result of some kind.

Antti Peltonen braincow

🐮
Off to grind few bytes together and expecting a result of some kind.
View GitHub Profile
@martinheld
martinheld / GraphQL introspection query via curl.md
Last active April 16, 2024 16:26
GraphQL introspection query via curl

GraphQL introspection query via curl

cat introspection_query.json

{ 
  "query": "query IntrospectionQuery {
      __schema {
        queryType { name }
        mutationType { name }