|
| 1 | +/* eslint-disable @typescript-eslint/no-redeclare */ |
| 2 | + |
| 3 | +/** Request Definitions */ |
| 4 | +export const QUERY = 'QUERY'; |
| 5 | +export type QUERY = typeof QUERY; |
| 6 | +export const MUTATION = 'MUTATION'; |
| 7 | +export type MUTATION = typeof MUTATION; |
| 8 | +export const SUBSCRIPTION = 'SUBSCRIPTION'; |
| 9 | +export type SUBSCRIPTION = typeof SUBSCRIPTION; |
| 10 | +export const FIELD = 'FIELD'; |
| 11 | +export type FIELD = typeof FIELD; |
| 12 | +export const FRAGMENT_DEFINITION = 'FRAGMENT_DEFINITION'; |
| 13 | +export type FRAGMENT_DEFINITION = typeof FRAGMENT_DEFINITION; |
| 14 | +export const FRAGMENT_SPREAD = 'FRAGMENT_SPREAD'; |
| 15 | +export type FRAGMENT_SPREAD = typeof FRAGMENT_SPREAD; |
| 16 | +export const INLINE_FRAGMENT = 'INLINE_FRAGMENT'; |
| 17 | +export type INLINE_FRAGMENT = typeof INLINE_FRAGMENT; |
| 18 | +export const VARIABLE_DEFINITION = 'VARIABLE_DEFINITION'; |
| 19 | +export type VARIABLE_DEFINITION = typeof VARIABLE_DEFINITION; |
| 20 | +export const FRAGMENT_VARIABLE_DEFINITION = 'FRAGMENT_VARIABLE_DEFINITION'; |
| 21 | +export type FRAGMENT_VARIABLE_DEFINITION = typeof FRAGMENT_VARIABLE_DEFINITION; |
| 22 | + |
| 23 | +/** Type System Definitions */ |
| 24 | +export const SCHEMA = 'SCHEMA'; |
| 25 | +export type SCHEMA = typeof SCHEMA; |
| 26 | +export const SCALAR = 'SCALAR'; |
| 27 | +export type SCALAR = typeof SCALAR; |
| 28 | +export const OBJECT = 'OBJECT'; |
| 29 | +export type OBJECT = typeof OBJECT; |
| 30 | +export const FIELD_DEFINITION = 'FIELD_DEFINITION'; |
| 31 | +export type FIELD_DEFINITION = typeof FIELD_DEFINITION; |
| 32 | +export const ARGUMENT_DEFINITION = 'ARGUMENT_DEFINITION'; |
| 33 | +export type ARGUMENT_DEFINITION = typeof ARGUMENT_DEFINITION; |
| 34 | +export const INTERFACE = 'INTERFACE'; |
| 35 | +export type INTERFACE = typeof INTERFACE; |
| 36 | +export const UNION = 'UNION'; |
| 37 | +export type UNION = typeof UNION; |
| 38 | +export const ENUM = 'ENUM'; |
| 39 | +export type ENUM = typeof ENUM; |
| 40 | +export const ENUM_VALUE = 'ENUM_VALUE'; |
| 41 | +export type ENUM_VALUE = typeof ENUM_VALUE; |
| 42 | +export const INPUT_OBJECT = 'INPUT_OBJECT'; |
| 43 | +export type INPUT_OBJECT = typeof INPUT_OBJECT; |
| 44 | +export const INPUT_FIELD_DEFINITION = 'INPUT_FIELD_DEFINITION'; |
| 45 | +export type INPUT_FIELD_DEFINITION = typeof INPUT_FIELD_DEFINITION; |
| 46 | +export const DIRECTIVE_DEFINITION = 'DIRECTIVE_DEFINITION'; |
| 47 | +export type DIRECTIVE_DEFINITION = typeof DIRECTIVE_DEFINITION; |
0 commit comments