Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GraphQL API - any automation tool for testing it? [closed]

I want to test a GraphQL API. For now, I'm using GraphiQL, but I'm looking for any automated tool... It seems that SOAPUI does not support GraphQL testing.

Any ideas?

Thanks.

like image 597
Eden G. Avatar asked Oct 17 '22 10:10

Eden G.


1 Answers

You basically have a few options that I've seen:

  1. Apollo's GraphQL Platform. It gives you full-blown telemetry on your individual resolvers, and can integrate with VS Code to let your developers know how expensive their query is in real time. You'll pay for it though.

  2. An observation tool such as HoneyComb or DataDog, also paid.

  3. Write your own. For a simple enough use-case it may make sense, but if you're looking for a rich feature set it probably makes more sense to buy rather than to build.

like image 149
RozenMD Avatar answered Nov 15 '22 14:11

RozenMD