32cdfb9535
- List all overly-recursive fields - Reduce recursion threshold to 2 - Add test for not-recursive-enough query - Use reusable methods in tests - Add changelog - Set changeable acceptable recursion level - Add error check test helpers
15 lines
191 B
GraphQL
15 lines
191 B
GraphQL
query allSchemaTypes {
|
|
__schema {
|
|
types {
|
|
fields {
|
|
type {
|
|
fields {
|
|
type {
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|