Coverage for graphqler / compiler / introspection_query.py: 100%
1 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-18 23:20 -0400
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-18 23:20 -0400
1introspection_query = """query IntrospectionQuery {
2 __schema {
4 queryType { name }
5 mutationType { name }
6 subscriptionType { name }
7 types {
8 ...FullType
9 }
10 directives {
11 name
12 description
14 locations
15 args {
16 ...InputValue
17 }
18 }
19 }
20 }
22 fragment FullType on __Type {
23 kind
24 name
25 description
27 fields(includeDeprecated: true) {
28 name
29 description
30 args {
31 ...InputValue
32 }
33 type {
34 ...TypeRef
35 }
36 isDeprecated
37 deprecationReason
38 }
39 inputFields {
40 ...InputValue
41 }
42 interfaces {
43 ...TypeRef
44 }
45 enumValues(includeDeprecated: true) {
46 name
47 description
48 isDeprecated
49 deprecationReason
50 }
51 possibleTypes {
52 ...TypeRef
53 }
54 }
56 fragment InputValue on __InputValue {
57 name
58 description
59 type { ...TypeRef }
60 defaultValue
61 }
63 fragment TypeRef on __Type {
64 kind
65 name
66 ofType {
67 kind
68 name
69 ofType {
70 kind
71 name
72 ofType {
73 kind
74 name
75 ofType {
76 kind
77 name
78 ofType {
79 kind
80 name
81 ofType {
82 kind
83 name
84 ofType {
85 kind
86 name
87 }
88 }
89 }
90 }
91 }
92 }
93 }
94 }
95"""