Skip to main content
mutation CreateAsyncReport($input: CreateAsyncReportInput!) {
  createAsyncReport(input: $input) {
    asyncReportResponse {
      requestId
    }
    errors {
      ... on JwtTokenMissingError {
        advice
        code
        message
      }
      ... on FailedToCreateAsyncReportError {
        message
      }
    }
  }
}
{
  "data": {
    "createAsyncReport": {
      "asyncReportResponse": {
        "requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
      },
      "errors": [
        {
          "__typename": "JwtTokenMissingError",
          "advice": "example",
          "code": "example",
          "message": "example"
        }
      ]
    }
  }
}
Mutation

Arguments

input
CreateAsyncReportInput!
required

Return type

CreateAsyncReportPayload!
asyncReportResponse
AsyncReportResponse
errors
[CreateAsyncReportError!]
mutation CreateAsyncReport($input: CreateAsyncReportInput!) {
  createAsyncReport(input: $input) {
    asyncReportResponse {
      requestId
    }
    errors {
      ... on JwtTokenMissingError {
        advice
        code
        message
      }
      ... on FailedToCreateAsyncReportError {
        message
      }
    }
  }
}
{
  "data": {
    "createAsyncReport": {
      "asyncReportResponse": {
        "requestId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
      },
      "errors": [
        {
          "__typename": "JwtTokenMissingError",
          "advice": "example",
          "code": "example",
          "message": "example"
        }
      ]
    }
  }
}