JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 41
  • Score
    100M100P100Q44720F
  • License MIT

Simpler schema giving types from GraphQLSchema for Nexus

Package Exports

  • nexus-graphql-api-schema-plugin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (nexus-graphql-api-schema-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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.