object CreateLocationsBulkOutput
Fields
| Field | Type | Description |
|---|---|---|
request_id | String | Public API request ID that identifies the related record. |
complexity | Int | Complexity as a numeric value. |
created_count | Int | Number of locations actually created. Can be lower than the requested name count if some names already existed - those are skipped, not treated as an error, so the call is safe to retry. |
skipped_count | Int | Number of requested names that already existed and were skipped. |
skipped_names | [String] | Names that already existed and were skipped, truncated to the first 100; use skipped_count for the exact total. |
Referenced By
- location_bulk_create Mutation
Example
{
"request_id": "UmVjb3JkOjEyMzQ=",
"complexity": 100,
"created_count": 45,
"skipped_count": 3,
"skipped_names": ["A-01-01-A-01"]
}