GithubHelp home page GithubHelp logo

yunoo / graphql-pagination-transform Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 249 KB

Transform GraphQL fields into relay connections using a @connection directive

License: MIT License

JavaScript 2.48% TypeScript 97.52%

graphql-pagination-transform's Introduction

GraphQL pagination transform

Transforms GraphQL schema fields into a relay connections using a @connection directive.


Features

  • Create the needed Connection and Edge object types.
  • Reassign the type of marked fields to the Connection type.
  • Remove any @connection directives.
  • Generate the PageInfo object type if it hasn't been defined.
  • Support non-nullable types
  • Throw errors if the generated Connection and Edge types have a name conflict with types already defined in your SDL.
  • Leave everything else in your SDL untouched.
  • Apply cacheControl directives to Connection and Edge types if exist.
  • Works with Apollo Federation schemas

Usage examples

  1. Install library
npm install --save graphql-pagination-transform
  1. Add @connection directive to the fields in your schema that needs to be transformed into relay connections.

  2. Import connecton directive from this lib

import { connectionDirective } from 'graphql-pagination-transform'

const { connectionDirectiveTypeDefs } = connectionDirective()
  1. Merge it with your schema type definitions
import gql from 'graphql'
import typeDefs from './typeDefs' // Path to your schema type definitions

const schema = gql([typeDefs, connectionDirectiveTypeDefs])

export default schema

or using mergeTypeDefs from graphql-tools in case your type definitions are DocumentNode's

import { mergeTypeDefs } from '@graphql-tools/merge'
import typeDefs from './typeDefs' // Path to your schema type definitions

const schema = mergeTypeDefs([assetTypeDefs, scalarTypes, directiveTypeDefs])

export default schema
  1. Transform type definitions. This will remove all @connection directives and create connection types with edges, nodes and pageInfo
import transform from 'graphql-directive-connection'
impot schema from './schema'

const result = transform({ typeDefs, cacheControl: { enable: true, apollo: true } })

Transformation result is a string representation of your type definitions. You will probaly want to convert it to GraphQLSchema type later. This could be archived using graphql-tools makeExecutableSchema or Apollo buildSubgraphSchema (for Apollo Federation).

cacheControl directives

This plugin will apply cacheControl directive on Connection type, edge and pageInfo fields by default.

Remember to add cacheControl directive to your schema in case you are not explicitly disabling it in a transform function.

enum CacheControlScope {
  PUBLIC
  PRIVATE
}

directive @cacheControl(
  maxAge: Int
  scope: CacheControlScope
  inheritMaxAge: Boolean
) on FIELD_DEFINITION | OBJECT | INTERFACE | UNION

In order to completely ignore cache arguments and disable cacheControl directive pass cacheControl: false or cacheControl: { enable: false } argument to transform (default plugin export) function. The package will then use the largest maxAge across the connection fields with custom types and apply it to non-scalar fields and types (e.g. edges, node and pageInfo).

GraphQL Apollo v3 and later supports inheritMaxAge argument which forces a particular field to inherit the maxAge of its parent field. You can enable this feature by passing cacheControl: { enable: true, apollo: true } to a transform function.

Keep in mind that due to the modified cacheControl heuristics in Apollo v3+ this could technically make any queries with Connection types uncacheable (see https://www.apollographql.com/docs/apollo-server/performance/caching/#why-are-these-the-maxage-defaults). Enabling defaultMaxAge across your GraphQL implementation might partially solve the problem, but only for Apollo v2 and lower versions. Thus, it is recommended to leave cacheControl directives enabled.

Authors

  • taylrun - Initial idea
  • Yunoo - Lib re-write and development

graphql-pagination-transform's People

Contributors

yunoo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.