inventory_sync_status
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
id | String | No | ||
analyze | Boolean | No | If true, the query will only be analyzed (cost estimated) without executing it. |
Return Type
Query
query inventory_sync_status(
$id: String,
$analyze: Boolean
) {
inventory_sync_status(
id: $id,
analyze: $analyze
) {
request_id
complexity
data {
id
url
user_id
account_id
warehouse_id
customer_account_id
total_count
status
error
created_at
updated_at
success_count
error_count
finished_count
}
}
}Variables
{
"id": "abc123",
"analyze": true
}Response
{
"data": {
"inventory_sync_status": {
"request_id": "abc123",
"complexity": 987,
"data": InventorySyncStatus
}
}
}