replace tabs with spaces in op_fragment.toml

This commit is contained in:
jangko 2022-07-05 09:06:05 +07:00
parent f93d73c638
commit 873d9f0ff3
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 15 additions and 15 deletions

View File

@ -1190,28 +1190,28 @@ type Query {
name: String
}
query IntrospectionQuery {
__schema {
types {
...FullType
}
}
__schema {
types {
...FullType
}
}
}
fragment FullType on __Type {
fields(includeDeprecated: true) {
type {
...TypeRef
}
}
fields(includeDeprecated: true) {
type {
...TypeRef
}
}
inputFields {
...InputValue
}
...InputValue
}
}
fragment InputValue on __InputValue {
type { ...TypeRef }
type { ...TypeRef }
}
fragment TypeRef on __Type {
kind
name
kind
name
}
"""