Skip to content

stphdenis/nexus-graphql-api-schema-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nexus-graphql-api-schema-plugin

Make's it possible to access to the nexus schema from anywhere in source definitions of Nexus.

Nexux schema is totally defined, even all queries, mutations with the args and even more.

Examples

See graphql-api-schema

Other example :

import { apiSchema } from 'graphql-api-schema'

schema.objectType({
  name: 'Country',
  definition(t) {
    t.id('id', {nullable: false})
    t.string('name', {nullable: true})
  }
})

schema.extendType({
  type: 'Query',
  definition(t) {
    if(apiSchema.stage === 'walk') {
      console.info({
        name: apiSchema.types['Country'].name,
        props: apiSchema.types['Country'].fieldList,
      }) // => { name: 'Country', props: [ 'id', 'nom' ] }
    }
    if(apiSchema.stage === 'build') {
      const fields = apiSchema.types['Country'].fields
      for(const field of apiSchema.types['Country'].fieldList) {
        const fieldType = fields[field].type
        if(fieldType.isNullable === false) {
          console.info(`The "${field}" is of type "${fieldType.of.name}" and is mandatory`)
          // => The "id" is of type "ID" and is mandatory
        } else {
          console.info(`The "${field}" is of type "${fieldType.of.name}" and is optional`)
          // => The "name" is of type "String" and is optional
        }
      }
    }
  }
})

Initialisation

import { graphqlApi } from 'nexus-graphql-api-schema-plugin'

schema.use(graphqlApi({
  dirName: 'api',
  fileName: 'apiSchema.json',
}))

Placing the file in a monitored part of the application updates apiSchema during recording.

About

Hydrate ApiSchema via JSON File from GraphQLSchema for Nexus

Resources

Stars

Watchers

Forks

Packages

No packages published