We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
countNode
Subtask of #35.
Explain the attributes of countNode.
The text was updated successfully, but these errors were encountered:
feat: Add support to explain countNode attributes. (#504)
954d22d
- RELEVANT ISSUE(S) Resolves #478 - DESCRIPTION (1) Adds ability to explain attributes of `countNode`. (2) Fixes a bug which was omitting the aggregate nodes. Request: ``` query @Explain { author { name numberOfBooks: _count(books: {}) } } ``` Response: ``` { "explain": { "selectTopNode": { "countNode": { "filter": nil, "sourceProperty": "books", "selectNode": { "filter": nil, "typeIndexJoin": { "scanNode": { "collectionID": "3", "collectionName": "author", "filter": nil, "spans": []{ { "start": "/3", "end": "/4", } } } } } } } } } ```
feat: Add support to explain countNode attributes. (sourcenetwork#504)
5169c0d
- RELEVANT ISSUE(S) Resolves sourcenetwork#478 - DESCRIPTION (1) Adds ability to explain attributes of `countNode`. (2) Fixes a bug which was omitting the aggregate nodes. Request: ``` query @Explain { author { name numberOfBooks: _count(books: {}) } } ``` Response: ``` { "explain": { "selectTopNode": { "countNode": { "filter": nil, "sourceProperty": "books", "selectNode": { "filter": nil, "typeIndexJoin": { "scanNode": { "collectionID": "3", "collectionName": "author", "filter": nil, "spans": []{ { "start": "/3", "end": "/4", } } } } } } } } } ```
shahzadlone
Successfully merging a pull request may close this issue.
Subtask of #35.
Explain the attributes of
countNode
.The text was updated successfully, but these errors were encountered: