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