IntegrationTest mutation examples

A new integrationTest should always contain an id. When id is left empty the API should trow an exception.

Add integration test

For all add examples we use the same CreateIntegrationTest query:

mutation StartIntegrationTest($integrationTest: IntegrationTestInput!) {
    IntegrationTest(entity: $integrationTest, delete: false) {
        __typename,
        id
    }
}

New IntegrationTest

var variables = {
    "integrationTest": {
        "id": 1234
    }
}