How to monitor GraphQL request like monitor Rest API with Charles

Viewed 1123

How to monitor GraphQL request like monitor Rest API with Charles ?

I'd like to monitor request with my application's GraphQL request,

But only get some Rest request from my application in Charles

Is that possible to monitor GraphQL Request ? How ?

PS:

  1. Api works fine, I just want to check API network speed via Charles
  2. I have setup the wifi proxy of iPhone device to connect my computer as Charles proxy server.
1 Answers

If requests aren't appearing in Charles, this isn't an issue related to GraphQL. Charles doesn't actually know anything about REST specifically, and will happily show the raw data of GraphQL requests just the same.

This is likely caused by an unrelated issue in your application, which isn't sending traffic via Charles' proxy, or isn't sending your requests to the network at all.

Related