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
updateNode
Subtask of #35.
Explain the attributes of updateNode.
The text was updated successfully, but these errors were encountered:
feat: Add ability to explain updateNode attributes. (#514)
f020961
- Resolves #483 - Add the attributes for `updateNode` that we want to see in the explainable response. Request: ``` mutation @Explain { update_user( ids: [ "bae-0a24cf29-b2c2-5861-9d00-abd6250c475d", "bae-958c9334-73cf-5695-bf06-cf06826babfa" ], data: "{\"points\": 59}" ) { _key name points } } ``` Response: ``` "explain": { "updateNode": { "data": { "points": float64(59), } "filter": nil, "ids": []string{ "bae-0a24cf29-b2c2-5861-9d00-abd6250c475d", "bae-958c9334-73cf-5695-bf06-cf06826babfa", } "selectTopNode": { "renderNode": { "selectNode": { "filter": nil, "scanNode": { "collectionID": "1", "collectionName": "user", "filter": nil, "spans": []{}, } } } } } } ```
feat: Add ability to explain updateNode attributes. (sourcenetwork#514
a16eb1d
) - Resolves sourcenetwork#483 - Add the attributes for `updateNode` that we want to see in the explainable response. Request: ``` mutation @Explain { update_user( ids: [ "bae-0a24cf29-b2c2-5861-9d00-abd6250c475d", "bae-958c9334-73cf-5695-bf06-cf06826babfa" ], data: "{\"points\": 59}" ) { _key name points } } ``` Response: ``` "explain": { "updateNode": { "data": { "points": float64(59), } "filter": nil, "ids": []string{ "bae-0a24cf29-b2c2-5861-9d00-abd6250c475d", "bae-958c9334-73cf-5695-bf06-cf06826babfa", } "selectTopNode": { "renderNode": { "selectNode": { "filter": nil, "scanNode": { "collectionID": "1", "collectionName": "user", "filter": nil, "spans": []{}, } } } } } } ```
shahzadlone
Successfully merging a pull request may close this issue.
Subtask of #35.
Explain the attributes of
updateNode
.The text was updated successfully, but these errors were encountered: