executionHistory
Get process execution history for a specific process.
The executionHistory query accepts the following input: ExecutionHistoryInput.
An example of the request is as follows:
query executionHistory {
executionHistory(
input: {
processId: "dbb98f81-6914-43a2-xxx-594506940dd5"
executionTime: "2015-01-31T15:32:00Z"
status: ERROR
numberOfResults: 200
}
) {
executionIdoriginalExecutionIdaccountexecutionTimestatusatomNameatomIdexecutionDuration
message
}
}
executionHistory(
input: ExecutionHistoryInput!
): [ExecutionRecord]
Arguments
executionHistory.input ● ExecutionHistoryInput! non-null input catalog-service
Type
ExecutionRecord object catalog-service
A type represents a process execution history record.
Was this topic helpful?