replace tabs with spaces in op_fragment.toml
This commit is contained in:
parent
f93d73c638
commit
873d9f0ff3
|
@ -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
|
||||
}
|
||||
"""
|
||||
|
||||
|
|
Loading…
Reference in New Issue