Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -18208,6 +18208,10 @@
},
"queryRejected": {
"$ref": "#/definitions/v1QueryRejected"
},
"link": {
"$ref": "#/definitions/v1Link",
"description": "Holds the link to the Workflow execution that processed the Query."
}
}
},
Expand Down
4 changes: 4 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14770,6 +14770,10 @@ components:
$ref: '#/components/schemas/Payloads'
queryRejected:
$ref: '#/components/schemas/QueryRejected'
link:
allOf:
- $ref: '#/components/schemas/Link'
description: Holds the link to the Workflow execution that processed the Query.
RampByPercentage:
type: object
properties:
Expand Down
2 changes: 2 additions & 0 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1187,6 +1187,8 @@ message QueryWorkflowRequest {
message QueryWorkflowResponse {
temporal.api.common.v1.Payloads query_result = 1;
temporal.api.query.v1.QueryRejected query_rejected = 2;
// Holds the link to the Workflow execution that processed the Query.
temporal.api.common.v1.Link link = 3;
}

message DescribeWorkflowExecutionRequest {
Expand Down
Loading