You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolvessourcenetwork#948
## Description
Implements a new type of explain called `debug` which dumps all plan
nodes (even non-explainable nodes) as a graph (has no attributes).
Usage is similar to other explain types, but would just do
`@explain(type: debug)` instead of `@explain(type: simple)` or
`@explain(type: execute)`.
Example Request:
```
query @Explain(type: debug) {
Author (groupBy: [age]) {
age
_group {
name
}
}
}
```
Response:
```
{
"data": [
"explain": {
"selectTopNode": {
"groupNode": {
"selectNode": {
"pipeNode": {
"scanNode": {}
}
}
}
}
}
]
}
```
Sub Task of #35
Spec: https://source.getoutline.com/doc/explain-queries-jtaGX0L995
The text was updated successfully, but these errors were encountered: