flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
32
BACK_BACK/node_modules/graphql/language/directiveLocation.js.flow
generated
vendored
Executable file
32
BACK_BACK/node_modules/graphql/language/directiveLocation.js.flow
generated
vendored
Executable file
|
|
@ -0,0 +1,32 @@
|
|||
// @flow strict
|
||||
/**
|
||||
* The set of allowed directive location values.
|
||||
*/
|
||||
export const DirectiveLocation = Object.freeze({
|
||||
// Request Definitions
|
||||
QUERY: 'QUERY',
|
||||
MUTATION: 'MUTATION',
|
||||
SUBSCRIPTION: 'SUBSCRIPTION',
|
||||
FIELD: 'FIELD',
|
||||
FRAGMENT_DEFINITION: 'FRAGMENT_DEFINITION',
|
||||
FRAGMENT_SPREAD: 'FRAGMENT_SPREAD',
|
||||
INLINE_FRAGMENT: 'INLINE_FRAGMENT',
|
||||
VARIABLE_DEFINITION: 'VARIABLE_DEFINITION',
|
||||
// Type System Definitions
|
||||
SCHEMA: 'SCHEMA',
|
||||
SCALAR: 'SCALAR',
|
||||
OBJECT: 'OBJECT',
|
||||
FIELD_DEFINITION: 'FIELD_DEFINITION',
|
||||
ARGUMENT_DEFINITION: 'ARGUMENT_DEFINITION',
|
||||
INTERFACE: 'INTERFACE',
|
||||
UNION: 'UNION',
|
||||
ENUM: 'ENUM',
|
||||
ENUM_VALUE: 'ENUM_VALUE',
|
||||
INPUT_OBJECT: 'INPUT_OBJECT',
|
||||
INPUT_FIELD_DEFINITION: 'INPUT_FIELD_DEFINITION',
|
||||
});
|
||||
|
||||
/**
|
||||
* The enum type representing the directive location values.
|
||||
*/
|
||||
export type DirectiveLocationEnum = $Values<typeof DirectiveLocation>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue