Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.35 KB

README.md

File metadata and controls

62 lines (43 loc) · 1.35 KB

graphql-directive-pluralize

Table of Contents

Introduction

This is simple directive how to make you String fields pluralizeD. On top of it, this could be a good start point for anyone interested in building their own one.

Install

yarn add graphql-directive-pluralize

This package requires graphql and graphql-tools as peer dependency

Usage

import { makeExecutableSchema } from 'graphql-tools';
import { plural, singular } from 'graphql-directive-pluralize';
import typeDefs from './schema.graphql';
import resolvers from './resolvers';

export default makeExecutableSchema({
  typeDefs,
  resolvers,
  schemaDirectives: {
    plural,
    singular
  },
});

GraphQL schema:

type Person {
  id: Int
  name: String @plural
}

type Query {
  persons: [Person]
}

Contributing

I would love to see your contribution. ❤️

For local development (and testing) is all you have to do just yarn and then yarn dev. This will start the server (powered by Micro from ZEIT) and Babel for transpilation of index.js.

Run yarn test for unit tests (we using Jest)

License

The MIT License (MIT) 2018 - Satyajit Sahoo