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

18 lines
232 B
GraphQL
Raw Normal View History

2019-10-31 01:37:42 +05:30
query allSchemaTypes {
__schema {
types {
fields {
2020-03-13 15:44:24 +05:30
type {
2019-10-31 01:37:42 +05:30
fields {
type {
fields {
2020-03-13 15:44:24 +05:30
name
2019-10-31 01:37:42 +05:30
}
}
}
}
}
}
}
2020-03-13 15:44:24 +05:30
}