gql-schema-relations-generator

1.1.0 • Public • Published

gql-schema-relations-generator

npm version

Analyze your graphql schema using this package in order to understand relations between your types.

Getting started

  • install gql-schema-relations-generator:
    $ npm install --save gql-schema-relations-generator

Example Usage

Without taking care of fields descriptions

Schema file

export default `
type Query {
  posts: [Post]
}

type Author {
  id: Int!
  firstName: String
  lastName: String
}

type Post {
  id: Int!
  title: String
  author: Author
  votes: Int
}

schema {
  query: Query
}
`;

Main file

import Schema from './src/example/data/schema';
import { Resolvers } from './src/example/data/resolvers';
import { makeExecutableSchema } from "graphql-tools";
import { SchemaRelationsGenerator } from 'gql-schema-relations-generator';

const schema = makeExecutableSchema({
	typeDefs: Schema,
	resolvers: Resolvers
});

let schemaRelations = new SchemaRelationsGenerator();

schemaRelations.generateRelationsMap(schema);

console.log(schemaRelations.getRelationsMap());
///The output will be: Map { 'Author' => Set { { rootName: 'Post' } } }

Schema file(with descriptions)

(Please note that this time we've added a description to author field under type Post

export default `
type Query {
  posts: [Post]
}

type Author {
  id: Int!
  firstName: String
  lastName: String
}

type Post {
  id: Int!
  title: String
  #authorId
  author: Author
  votes: Int
}

schema {
  query: Query
}
`;

Main file

import Schema from './src/example/data/schema';
import { Resolvers } from './src/example/data/resolvers';
import { makeExecutableSchema } from "graphql-tools";
import { SchemaRelationsGenerator } from 'gql-schema-relations-generator';

const schema = makeExecutableSchema({
	typeDefs: Schema,
	resolvers: Resolvers
});

let schemaRelations = new SchemaRelationsGenerator();

schemaRelations.generateRelationsMap(schema, true);//In case the second parameter is true - descriptions are taken care of

console.log(schemaRelations.getRelationsMap());
///The output will be: Map {'Author' => Set { { rootName: 'Post', description: 'authorId' } } }

Readme

Keywords

none

Package Sidebar

Install

npm i gql-schema-relations-generator

Weekly Downloads

0

Version

1.1.0

License

ISC

Last publish

Collaborators

  • gonengar