This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

graphql-transformer
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

graphql-transformer

npm version Build Status

A tool to transform GraphQL schemas via simple functions

How to use

npm install --save graphql-transformer

Basic usage:

const transformedSchema = transformSchema(originalSchema, {
    transformField(field: GraphQLNamedFieldConfig<any, any>, context) {
        // Rename a field in a type
        if (context.oldOuterType.name == 'MyType') {
            return {
                ...field,
                name: field.name + 'ButCooler'
            }
        }
        return field;
    },
 
    transformObjectType(type: GraphQLObjectTypeConfig<any, any>) {
        if (type.name == 'MyType') {
            return {
                ...type,
                name: 'MyCoolType'
            };
        }
        return type;
    },
 
    transformFields(fields: GraphQLFieldConfigMap<any, any>, context) {
        // You can even copy types on the fly and transform the copies
        const type2 = context.copyType(context.oldOuterType, {
            transformObjectType(typeConfig: GraphQLObjectTypeConfig<any, any>) {
                return {
                    ...typeConfig,
                    name: typeConfig.name + '2'
                };
            }
        });
 
        // This just adds a reflexive field "self" to all types, but its type does not have
        // the "self" field (because it is a copy from the original type, see above)
        // it also won't have the "cool" rename applied because the top-level transformers are not applied
        return {
            ...fields,
            self: {
                type: type2,
                resolve: (source: any) => source
            }
        }
    }
});

This test case demonstrates that and how it works.

Contributing

After cloning the repository, run

npm install
npm start

To run the test suite, run

npm test

To debug the tests in WebStorm, right-click on graphql-transformer-test.js and choose Debug.

Readme

Keywords

Package Sidebar

Install

npm i graphql-transformer

Weekly Downloads

10

Version

0.2.1

License

MIT

Unpacked Size

97.2 kB

Total Files

30

Last publish

Collaborators

  • mfusser
  • aeb-bot
  • jan-melcher-aeb