inventory_sync_status

Arguments

ArgumentTypeRequiredDefaultDescription
idStringNo
analyzeBooleanNo

If true, the query will only be analyzed (cost estimated) without executing it.

Return Type

InventorySyncBatchQueryResult

Query

query inventory_sync_status(
  $id: String,
  $analyze: Boolean
) {
  inventory_sync_status(
    id: $id,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...InventorySyncStatusFragment
    }
  }
}

Variables

{
  "id": "abc123",
  "analyze": true
}

Response

{
  "data": {
    "inventory_sync_status": {
      "request_id": "abc123",
      "complexity": 987,
      "data": InventorySyncStatus
    }
  }
}