Calculate
Update values and re-evaluate a specific calculation in a CalcTree workspace
Input Parameters
Parameter
Type
Required
Description
Sample Mutation
query Calculate(
$workspaceId: ID!,
$calculationId: ID!,
$revisionId: ID!,
$statements: [StatementInput!]!
) {
calculate(
workspaceId: $workspaceId,
calculationId: $calculationId,
revisionId: $revisionId,
statements: $statements
) {
revisionId
calculationId
statements {
statementId
title
formula
namedValues {
name
value
}
errors
}
}
}
Sample Header
Sample Variables
Sample Response
Error field
Description of Returned Fields
Field
Type
Description
Usage Example in Python
Tips for Using this query
Last updated