|
1 | 1 | # Commands |
2 | 2 | <!-- commands --> |
3 | 3 | * [`shopify app build`](#shopify-app-build) |
| 4 | +* [`shopify app bulk execute`](#shopify-app-bulk-execute) |
| 5 | +* [`shopify app bulk status`](#shopify-app-bulk-status) |
4 | 6 | * [`shopify app config link`](#shopify-app-config-link) |
5 | 7 | * [`shopify app config pull`](#shopify-app-config-pull) |
6 | 8 | * [`shopify app config use [config] [flags]`](#shopify-app-config-use-config-flags) |
@@ -118,6 +120,80 @@ DESCRIPTION |
118 | 120 | extension to ensure that it's valid. |
119 | 121 | ``` |
120 | 122 |
|
| 123 | +## `shopify app bulk execute` |
| 124 | + |
| 125 | +Execute bulk operations. |
| 126 | + |
| 127 | +``` |
| 128 | +USAGE |
| 129 | + $ shopify app bulk execute [--client-id <value> | -c <value>] [--no-color] [--output-file <value> --watch] [--path |
| 130 | + <value>] [-q <value>] [--reset | ] [-s <value>] [--variable-file <value> | -v <value>...] [--verbose] [--version |
| 131 | + <value>] |
| 132 | +
|
| 133 | +FLAGS |
| 134 | + -c, --config=<value> The name of the app configuration. |
| 135 | + -q, --query=<value> The GraphQL query or mutation to run as a bulk operation. If omitted, reads from standard |
| 136 | + input. |
| 137 | + -s, --store=<value> The store domain. Must be an existing dev store. |
| 138 | + -v, --variables=<value>... The values for any GraphQL variables in your mutation, in JSON format. Can be specified |
| 139 | + multiple times. |
| 140 | + --client-id=<value> The Client ID of your app. |
| 141 | + --no-color Disable color output. |
| 142 | + --output-file=<value> The file path where results should be written if --watch is specified. If not specified, |
| 143 | + results will be written to STDOUT. |
| 144 | + --path=<value> The path to your app directory. |
| 145 | + --reset Reset all your settings. |
| 146 | + --variable-file=<value> Path to a file containing GraphQL variables in JSONL format (one JSON object per line). |
| 147 | + Can't be used with --variables. |
| 148 | + --verbose Increase the verbosity of the output. |
| 149 | + --version=<value> The API version to use for the bulk operation. If not specified, uses the latest stable |
| 150 | + version. |
| 151 | + --watch Wait for bulk operation results before exiting. Defaults to false. |
| 152 | +
|
| 153 | +DESCRIPTION |
| 154 | + Execute bulk operations. |
| 155 | +
|
| 156 | + Executes an Admin API GraphQL query or mutation on the specified dev store, as a bulk operation. |
| 157 | +
|
| 158 | + Bulk operations allow you to process large amounts of data asynchronously. Learn more about "bulk query operations" |
| 159 | + (https://shopify.dev/docs/api/usage/bulk-operations/queries) and "bulk mutation operations" |
| 160 | + (https://shopify.dev/docs/api/usage/bulk-operations/imports). |
| 161 | +
|
| 162 | + Use "`bulk status`" (https://shopify.dev/docs/api/shopify-cli/app/app-bulk-status) to check the status of your bulk |
| 163 | + operations. |
| 164 | +``` |
| 165 | + |
| 166 | +## `shopify app bulk status` |
| 167 | + |
| 168 | +Check the status of bulk operations. |
| 169 | + |
| 170 | +``` |
| 171 | +USAGE |
| 172 | + $ shopify app bulk status [--client-id <value> | -c <value>] [--id <value>] [--no-color] [--path <value>] [--reset |
| 173 | + | ] [-s <value>] [--verbose] |
| 174 | +
|
| 175 | +FLAGS |
| 176 | + -c, --config=<value> The name of the app configuration. |
| 177 | + -s, --store=<value> The store domain. Must be an existing dev store. |
| 178 | + --client-id=<value> The Client ID of your app. |
| 179 | + --id=<value> The bulk operation ID. If not provided, lists all bulk operations in the last 7 days. |
| 180 | + --no-color Disable color output. |
| 181 | + --path=<value> The path to your app directory. |
| 182 | + --reset Reset all your settings. |
| 183 | + --verbose Increase the verbosity of the output. |
| 184 | +
|
| 185 | +DESCRIPTION |
| 186 | + Check the status of bulk operations. |
| 187 | +
|
| 188 | + Check the status of a specific bulk operation by ID, or list all bulk operations in the last 7 days. |
| 189 | +
|
| 190 | + Bulk operations allow you to process large amounts of data asynchronously. Learn more about "bulk query operations" |
| 191 | + (https://shopify.dev/docs/api/usage/bulk-operations/queries) and "bulk mutation operations" |
| 192 | + (https://shopify.dev/docs/api/usage/bulk-operations/imports). |
| 193 | +
|
| 194 | + Use "`bulk execute`" (https://shopify.dev/docs/api/shopify-cli/app/app-bulk-execute) to start a new bulk operation. |
| 195 | +``` |
| 196 | + |
121 | 197 | ## `shopify app config link` |
122 | 198 |
|
123 | 199 | Fetch your app configuration from the Developer Dashboard. |
@@ -379,6 +455,9 @@ DESCRIPTION |
379 | 455 | Execute GraphQL queries and mutations. |
380 | 456 |
|
381 | 457 | Executes an Admin API GraphQL query or mutation on the specified dev store. |
| 458 | +
|
| 459 | + For operations that process large amounts of data, use "`bulk execute`" |
| 460 | + (https://shopify.dev/docs/api/shopify-cli/app/app-bulk-execute) instead. |
382 | 461 | ``` |
383 | 462 |
|
384 | 463 | ## `shopify app function build` |
|
0 commit comments