GraphQL Traffic
APXY can detect GraphQL requests in captured traffic and filter them by operation name or type (query, mutation, subscription).
Web UI
GraphQL requests appear in the Traffic page like any other HTTP request — typically as POST requests to a /graphql endpoint. The detail view shows the full POST body containing the GraphQL query, operation name, and variables. Use the protocol filter tabs (All / HTTP / HTTPS / WebSocket / JSON) to narrow down to JSON-based requests.
CLI
apxy logs graphql options (--operation-name, --operation-type, --limit, --format, etc.) are documented in CLI Reference → Traffic.
Quick example:
apxy logs graphql --operation-type mutation --limit 10Use Cases
Find all mutations
Isolate write operations from read queries using --operation-type mutation and your preferred output format.
Debug a specific query
Search by operation name, then open the full record with apxy logs show (Traffic reference).