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 subscriptions.
- # 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 variable definitions.
- # Indicates the directive is valid on a schema SDL definition.
- # Indicates the directive is valid on a scalar SDL definition.
- # Indicates the directive is valid on an object SDL definition.
- # Indicates the directive is valid on a field SDL definition.
- # Indicates the directive is valid on a field argument SDL definition.
- # Indicates the directive is valid on an interface SDL definition.
- # Indicates the directive is valid on an union SDL definition.
- # Indicates the directive is valid on an enum SDL definition.
- # Indicates the directive is valid on an enum value SDL definition.
- # Indicates the directive is valid on an input object SDL definition.
- # Indicates the directive is valid on an input object field SDL definition.
- }