File tree Expand file tree Collapse file tree 2 files changed +527
-466
lines changed Expand file tree Collapse file tree 2 files changed +527
-466
lines changed Original file line number Diff line number Diff line change 1
1
introspection_query = '''
2
- query IntrospectionQuery {
3
- __schema {
4
- queryType { name }
5
- mutationType { name }
6
- types {
7
- ...FullType
8
- }
9
- directives {
10
- name
11
- description
12
- args {
13
- ...InputValue
14
- }
15
- onOperation
16
- onFragment
17
- onField
18
- }
2
+ query IntrospectionQuery {
3
+ __schema {
4
+ queryType { name }
5
+ mutationType { name }
6
+ types {
7
+ ...FullType
19
8
}
20
- }
21
- fragment FullType on __Type {
22
- kind
23
- name
24
- description
25
- fields {
9
+ directives {
26
10
name
27
11
description
28
12
args {
29
13
...InputValue
30
14
}
31
- type {
32
- ...TypeRef
33
- }
34
- isDeprecated
35
- deprecationReason
15
+ onOperation
16
+ onFragment
17
+ onField
36
18
}
37
- inputFields {
19
+ }
20
+ }
21
+ fragment FullType on __Type {
22
+ kind
23
+ name
24
+ description
25
+ fields {
26
+ name
27
+ description
28
+ args {
38
29
...InputValue
39
30
}
40
- interfaces {
41
- ...TypeRef
42
- }
43
- enumValues {
44
- name
45
- description
46
- isDeprecated
47
- deprecationReason
48
- }
49
- possibleTypes {
31
+ type {
50
32
...TypeRef
51
33
}
34
+ isDeprecated
35
+ deprecationReason
36
+ }
37
+ inputFields {
38
+ ...InputValue
52
39
}
53
- fragment InputValue on __InputValue {
40
+ interfaces {
41
+ ...TypeRef
42
+ }
43
+ enumValues {
54
44
name
55
45
description
56
- type { ...TypeRef }
57
- defaultValue
46
+ isDeprecated
47
+ deprecationReason
48
+ }
49
+ possibleTypes {
50
+ ...TypeRef
58
51
}
59
- fragment TypeRef on __Type {
52
+ }
53
+ fragment InputValue on __InputValue {
54
+ name
55
+ description
56
+ type { ...TypeRef }
57
+ defaultValue
58
+ }
59
+ fragment TypeRef on __Type {
60
+ kind
61
+ name
62
+ ofType {
60
63
kind
61
64
name
62
65
ofType {
65
68
ofType {
66
69
kind
67
70
name
68
- ofType {
69
- kind
70
- name
71
- }
72
71
}
73
72
}
74
73
}
74
+ }
75
75
'''
You can’t perform that action at this time.
0 commit comments