Skip to content

Commit 8dc72a9

Browse files
authored
Create introspection_query.graphql
1 parent 9ab6adc commit 8dc72a9

File tree

1 file changed

+76
-0
lines changed

1 file changed

+76
-0
lines changed
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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+
}

0 commit comments

Comments
 (0)