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"
}
]
}
}
}
Request Async and Downloadable reports
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
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show Possible enum values
Show child attributes
CreateAsyncReportPayload!
Show child attributes
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"
}
]
}
}
}
Was this page helpful?