debian-mirror-gitlab/spec/fixtures/api/graphql/introspection.graphql

101 lines
1.3 KiB
GraphQL
Raw Normal View History

2019-07-07 11:18:12 +05:30
# pulled from GraphiQL query
query IntrospectionQuery {
__schema {
2020-07-28 23:09:34 +05:30
queryType {
name
}
mutationType {
name
}
subscriptionType {
name
}
2019-07-07 11:18:12 +05:30
types {
...FullType
}
directives {
name
description
locations
args {
...InputValue
}
}
}
}
fragment FullType on __Type {
kind
name
description
fields(includeDeprecated: true) {
name
description
args {
...InputValue
}
type {
...TypeRef
}
isDeprecated
deprecationReason
}
inputFields {
...InputValue
}
interfaces {
...TypeRef
}
enumValues(includeDeprecated: true) {
name
description
isDeprecated
deprecationReason
}
possibleTypes {
...TypeRef
}
}
fragment InputValue on __InputValue {
name
description
2020-07-28 23:09:34 +05:30
type {
...TypeRef
}
2019-07-07 11:18:12 +05:30
defaultValue
}
fragment TypeRef on __Type {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
}
}
}
}
}
}
}
}