Flocon/docs/graphql.md
Florent CHAMPIGNY ce1df58b9f
refact: doc content (#455)
Co-authored-by: Florent Champigny <florent@bere.al>
2025-12-24 14:55:53 +01:00

737 B
Raw Blame History

🛰️ GraphQL Request Inspector

Flocon also supports GraphQL requests via a dedicated Apollo interceptor.

Just like with REST, all outgoing GraphQL requests made through Apollo Client are captured and displayed in Flocons interface — allowing you to debug your queries and mutations in real time.

For each GraphQL call, you can inspect:

  • Response data or error payload
  • Headers, status code, and response time
  • The operation type (query / mutation)
ApolloClient.Builder()
            // just set your already configured with flocon okhttp interceptor client
            .okHttpClient(client)
            // regular builder methods
            .build()