-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Ability to explain an executed request (#1188)
- Resolves #326 - Description: Adds ability to return datapoints / information gathered at every planner step. The information is stored during execution, and gathered post execution. - Usage: Add `@explain(type: execute) ` after the `query` or `mutation` operation. - Execute explain request for `query` operation - example: ``` query @Explain(type: execute) { Address(groupBy: [country]) { country _group { city } } } ``` - Execute explain request for `mutation` operation - example: ``` mutation @Explain(type: execute) { update_address( ids: ["bae-c8448e47-6cd1-571f-90bd-364acb80da7b"], data: "{\"country\": \"USA\"}" ) { country city } } ```
- Loading branch information
1 parent
6fb3535
commit 5eb9aea
Showing
35 changed files
with
2,848 additions
and
140 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
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.