rootđź’€senseicat:~#

Hack. Eat. Sleep. Repeat!!!


Project maintained by SENSEiXENUS Hosted on GitHub Pages — Theme by mattgraham

GRAPHQL tricks


Using Curl


curl https://localhost:5000/api/v1/graphql -H "Content-Type: application/json" -d @introspection.json | jq ".data" | tee schema.json

Graphql Dorks


body="GraphQL Server" && title="Graphql"

Common list so far


/query
/graphql

Creating Fragments


fragment UserFields on User {
  id
  username
  email
}
query GetUsers {
  activeUsers {
    ...UserFields
    status
  }
  adminUsers {
    ...UserFields
    permissions
  }