OBJECT

__Directive

link GraphQL Schema definition

  • type __Directive {
  • # The __Directive type represents a Directive that a server supports.
  • name: String!
  • description: String
  • isRepeatable: Boolean!
  • locations: [__DirectiveLocation!]!
  • # Arguments
  • # includeDeprecated: [Not documented]
  • args(includeDeprecated: Boolean): [__InputValue!]!
  • onOperation: Boolean @deprecated( reason: "Use `locations`." )
  • onFragment: Boolean @deprecated( reason: "Use `locations`." )
  • onField: Boolean @deprecated( reason: "Use `locations`." )
  • }