graphqlify

1.2.0 • Public • Published

graphqlify

This module helps you build GraphQL queries using plain JavaScript objects. This can be useful when you need to programmatically build GraphQL queries. Install the module from npm to get started.

npm i -S graphqlify

Example

GraphQL

{
  teamFourStar {
    members {
      memberName
    }
    saiyans: members(type: SAIYAJIN, minPower: 9000) {
      memberName
      powerLevel
    }
  }
}

JavaScript

import graphqlify, {Enum} from 'graphqlify';
 
const string = graphqlify({
  teamFourStar: {
    fields: {
      members: {
        fields: {memberName: {}}
      },
      saiyans: {
        field: 'members',
        params: {type: Enum('SAIYAJIN'), minPower: 9000},
        fields: {memberName: {}, powerLevel: {}}
      }
    }
  }
});

Readme

Keywords

Package Sidebar

Install

npm i graphqlify

Weekly Downloads

94

Version

1.2.0

License

MIT

Unpacked Size

31.3 kB

Total Files

7

Last publish

Collaborators

  • mnmtanish