Hack. Eat. Sleep. Repeat!!!
curl https://localhost:5000/api/v1/graphql -H "Content-Type: application/json" -d @introspection.json | jq ".data" | tee schema.json
body="GraphQL Server" && title="Graphql"
/query
/graphql
fragment UserFields on User {
id
username
email
}
query GetUsers {
activeUsers {
...UserFields
status
}
adminUsers {
...UserFields
permissions
}