Skip to main content
To update a field on a run step, first query the run to find the field you want, then run a mutation to set its value.

Get the fields

Query the run to get the fields that exist on the run steps you want to update:
The response looks like this:
The query returns a list of run steps within that run, and the fields within those run steps. Find the field that you want to update.

Update a field value

From the example response above, suppose you want to update field 1462 because your test equipment can determine pass or fail. Use this mutation:
This mutation does the following:
  • Because it updates data, it’s a mutation.
  • The mutation is updateRunStepFieldValue.
  • The field id is 1462 and the value you’re setting is true.
  • It includes the etag of the original field. The etag prevents accidental data overwrites by enforcing concurrency control.
The response returns the id and the updated value of the field.