JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 38
  • Score
    100M100P100Q61765F
  • License GPL-3.0

Fields and Objects marked with @private will not be removed from the schema. They will not appear in introspection and they will not be queryable.

Package Exports

  • graphql-directive-private

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 (graphql-directive-private) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

graphql-directive-private

Fields and Objects marked with @private will be removed from the schema. They will not appear in introspection and they will not be queryable.

Example

import { PrivateDirective, privateTransform, privateDirectiveDeclaration } from 'graphql-directive-private'
const typeDefs = `
    ${privateDirectiveDeclaration}

    type User @private {
      userId: Int
      post: Post
    }

    type Post {
      postId: Int @private
      user: User
    }

    type Query {
      user: User
      post: Post
    }
  `

const publicSchema = makeExecutableSchema({
  typeDefs,
  schemaDirectives: {
    private: PrivateDirective
  },
})
const privateSchema = transformSchema(publicSchema, [privateTransform(publicSchema)])

const query = gql`
  query {
    user {
      userId
      post {
        postId
      }
    }
    post {
      postId
      user {
        userId
      }
    }
  }
`
const response = await execute(schema, query)
// response == { data: { post: { postId: null } } }