ENUM
__DirectiveLocation
An enum describing valid locations where a directive can be placed
link GraphQL Schema definition
- enum __DirectiveLocation {
- # Indicates the directive is valid on queries.
- # Indicates the directive is valid on mutations.
- # Indicates the directive is valid on fields.
- # Indicates the directive is valid on fragment definitions.
- # Indicates the directive is valid on fragment spreads.
- # Indicates the directive is valid on inline fragments.
- # Indicates the directive is valid on a schema IDL definition.
- # Indicates the directive is valid on a scalar IDL definition.
- # Indicates the directive is valid on an object IDL definition.
- # Indicates the directive is valid on a field IDL definition.
- # Indicates the directive is valid on a field argument IDL definition.
- # Indicates the directive is valid on an interface IDL definition.
- # Indicates the directive is valid on an union IDL definition.
- # Indicates the directive is valid on an enum IDL definition.
- # Indicates the directive is valid on an input object IDL definition.
- # Indicates the directive is valid on an input object field IDL definition.
- }