OBJECT

removeTestStep

link GraphQL Schema definition

1Mutation removeTestStep {
2
3# Mutation used to remove a Step from a Test.
4#
5# Arguments
6# stepId: the id of the Step.
7removeTestStep(stepId: String!): String
8
9}

link Example

The mutation below removes the Step with id "836d30ec-f034-4a03-879e-9c44a1d6d1fe".

mutation {
    removeTestStep(
        stepId: "836d30ec-f034-4a03-879e-9c44a1d6d1fe",
    )
}