Execute GraphQL Operation
documentedSends a GraphQL operation to Twitch's GraphQL endpoint.
POST /gqlGraphQLno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://gql.twitch.tv/gql" \
-X POST \
-H "Client-Id: {{TWITCH_CLIENT_ID}}" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
--data-raw '[{"operationName":"Followers","variables":{"limit":{{$limit}},"login":"{{$login}}","order":"{{$order}}"},"extensions":{"persistedQuery":{"version":1,"sha256Hash":"{{$sha256Hash}}"}}}]'