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!]!
  • args: [__InputValue!]!
  • onOperation: Boolean @deprecated( reason: "Use `locations`." )
  • onFragment: Boolean @deprecated( reason: "Use `locations`." )
  • onField: Boolean @deprecated( reason: "Use `locations`." )
  • }