* add new plugin for better organization * added handling in theme for mutations and query types * added tsdoc to hooks * added tsdocs to utility functions * added tsdoc to providers * generated reference * general fixes for generated reference * generated api reference specs + general fixes * add missing import react * split utilities into different directories * added overview page * added link to customer authentication section * fix lint errors * added changeset * fix readme * fixed build error * added expand fields + other sections to overview * updated what's new section * general refactoring * remove unnecessary query field * fix links * added ignoreApi option
38 lines
950 B
YAML
38 lines
950 B
YAML
type: object
|
|
description: The details of the batch job to create.
|
|
required:
|
|
- type
|
|
- context
|
|
properties:
|
|
type:
|
|
type: string
|
|
description: >-
|
|
The type of batch job to start, which is defined by the `batchType`
|
|
property of the associated batch job strategy.
|
|
example: product-export
|
|
context:
|
|
type: object
|
|
description: Additional infomration regarding the batch to be used for processing.
|
|
example:
|
|
shape:
|
|
prices:
|
|
- region: null
|
|
currency_code: eur
|
|
dynamicImageColumnCount: 4
|
|
dynamicOptionColumnCount: 2
|
|
list_config:
|
|
skip: 0
|
|
take: 50
|
|
order:
|
|
created_at: DESC
|
|
relations:
|
|
- variants
|
|
- variant.prices
|
|
- images
|
|
dry_run:
|
|
type: boolean
|
|
description: >-
|
|
Set a batch job in dry_run mode, which would delay executing the batch job
|
|
until it's confirmed.
|
|
default: false
|