Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add ability to explain
dagScanNode
attribute(s). (#560)
- Relevant issue: Resolves #479 - Description: Adds the `spans` attribute for `dagScanNode` to be included in the returned explain graph response. - Request: ``` query @Explain { allCommits (dockey: "test-key", field: "1") { links { cid } } } ``` - Response: ``` { "explain": { "selectTopNode": { "selectNode": { "filter": null, "commitSelectNode": { "dagScanNode": { "spans": []{ { "start": "/test-key/1", "end": "/test-key/2", } } } } } } } } ```
- Loading branch information