-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add
typeIndexJoin
explainable attributes. (#499)
- RELEVANT ISSUE(S) Resolves #475 - DESCRIPTION Add the remaining attributes for `typeIndexJoin` node that we want to see in the explainable response. Example: Request: ``` query @Explain { author { _key name contact { email address { city } } } } ``` Response: ``` { "explain": { "selectTopNode": { "renderNode": { "selectNode": { "filter": nil "typeIndexJoin": { "joinType": "typeJoinOne" "direction": "primary" "rootName": "author" "root": { "scanNode": { "filter": nil "collectionID": "3" "collectionName": "author" "spans": []{ { "start": "/3" "end": "/4" } } } } "subTypeName": "contact" "subType": { "selectTopNode": { "selectNode": { "filter": nil "typeIndexJoin": { "joinType": "typeJoinOne" "direction": "primary" "rootName": "contact" "root": { "scanNode": { "filter": nil "collectionID": "4" "collectionName": "authorContact" "spans": []{ { "start": "/4" "end": "/5" } } } } "subTypeName": "address" "subType": { "selectTopNode": { "selectNode": { "filter": nil "scanNode": { "filter": nil "collectionID": "5" "collectionName": "contactAddress" "spans": []{ { "start": "/5" "end": "/6" } } } } } } } } } } } } } } } } ```
- Loading branch information
1 parent
954d22d
commit 8210564
Showing
12 changed files
with
1,682 additions
and
535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.