Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

graphql-query-generator

Package Overview
Dependencies
Maintainers
2
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-query-generator

Generates queries from the GraphQL endpoint via schema introspection.

  • 0.5.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-92.68%
Maintainers
2
Weekly downloads
 
Created
Source

build

GraphQL Query Generator

GraphQL Query Generator is a library/tool that helps you easily test your GraphQL endpoints using introspection!

Getting Started

So you want to test your GraphQL endpoint. This tool will generate all the queries that your GraphQL endpoint will have. However, for queries that require parameters, this tool will need annotations. So please follow the steps below to get started.

Create example queries that you want tested in the comments!

type Query {
  # RollDice has four examples
  #
  # Examples:
  # rollDice(numDice: 4, numSides: 2)
  # rollDice( numDice : 40 , numSides:2)
  # rollDice ( numDice: 2, numSides: 299 )
  # rollDice (
  #   numDice:4,
  #   numSides: 2342
  # )
  rollDice(numDice: Int!, numSides: Int): RandomDie
}

2 Run the tool!

You can use either the CLI or the library to get started!

2.1 Using the CLI

Execute following commands to get this tool running.

NOTE: Whenever there are parameters required you need to provide them in Graphql schema by following our Examples notation. You can find it in Usage section.

npm i -g graphql-query-generator
gql-test http://<your-server-address>:<your-server-port>
gql-test --help # for more information
2.2 Using the library

If you want more control over the queries that are generated via this tool. Please see the following example:

const QueryGenerator = require('graphql-query-generator');
const request = require('request');
const assert = require('assert');

describe('Query generation', function() {
  const serverUrl = 'http://<your-server-address>:<your-server-port>/graphql';
  let queries = null;

  before(() => {
    const queryGenerator = new QueryGenerator(serverUrl);
    queryPromise = queryGenerator.run();
  });

  it('Generates multiple queries', function() {
    this.timeout = 50000;

    return queryPromise
      .then(({queries, coverage}) =>{
          console.log(`Coverage: ${coverage.coverageRatio}`);
          console.log(`skipped fields: ${coverage.notCoveredFields}`);
          return Promise.all(queries.map(query => requestToGraphQL(serverUrl, query)));
      })
      .then(results => assert.equal(results.filter(x => x.statusCode !== 200).length, 0));
  });
});

function requestToGraphQL(serverUrl, query) {
  return new Promise((resolve, reject) => {
    request(serverUrl, {
      method: 'POST',
      headers: {
        'Content-Type': 'application/json'
      },
      body:JSON.stringify({
        "query": query,
        "variables": "{}",
        "operationName": null
      })
    }, function (err, result) {
      if (err) return reject(err);

      resolve(result)
    });
  });
}

This is an example of a test that will just check that it returns HTTP status code 200! It would be also good to check if, say, the body contains an error section. However, it's all up to you!

Extras

Opt out of certain queries

When annotating, if you add +NOFOLLOW in examples will prevent this path from being followed when creating queries

type RandomDie {
  numSides: Int!
  rollOnce: Int!
  statistics(page: Int!): RandomnessStatistics!

  # A description for ignored field with parameters
  #
  # Examples:
  # ignoredWithExamples(parameter: 42)
  # +NOFOLLOW
  ignoredWithExamples(parameter: Int!): IgnoredSubtype

  # +NOFOLLOW
  ignoredNoParameters: IgnoredSubtype
}

Contributing

We welcome feedback! Please create an issue for feedback or issues. If you would like to contribute, open a PR and let's start talking!

FAQs

Package last updated on 09 Oct 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc