|
100 | 100 | "category": "app", |
101 | 101 | "related": [] |
102 | 102 | }, |
| 103 | + { |
| 104 | + "name": "app bulk cancel", |
| 105 | + "description": "Cancels a running bulk operation by ID.", |
| 106 | + "overviewPreviewDescription": "Cancel a bulk operation.", |
| 107 | + "type": "command", |
| 108 | + "isVisualComponent": false, |
| 109 | + "defaultExample": { |
| 110 | + "codeblock": { |
| 111 | + "tabs": [ |
| 112 | + { |
| 113 | + "title": "app bulk cancel", |
| 114 | + "code": "shopify app bulk cancel [flags]", |
| 115 | + "language": "bash" |
| 116 | + } |
| 117 | + ], |
| 118 | + "title": "app bulk cancel" |
| 119 | + } |
| 120 | + }, |
| 121 | + "definitions": [ |
| 122 | + { |
| 123 | + "title": "Flags", |
| 124 | + "description": "The following flags are available for the `app bulk cancel` command:", |
| 125 | + "type": "appbulkcancel", |
| 126 | + "typeDefinitions": { |
| 127 | + "appbulkcancel": { |
| 128 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 129 | + "name": "appbulkcancel", |
| 130 | + "description": "", |
| 131 | + "members": [ |
| 132 | + { |
| 133 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 134 | + "syntaxKind": "PropertySignature", |
| 135 | + "name": "--client-id <value>", |
| 136 | + "value": "string", |
| 137 | + "description": "The Client ID of your app.", |
| 138 | + "isOptional": true, |
| 139 | + "environmentValue": "SHOPIFY_FLAG_CLIENT_ID" |
| 140 | + }, |
| 141 | + { |
| 142 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 143 | + "syntaxKind": "PropertySignature", |
| 144 | + "name": "--id <value>", |
| 145 | + "value": "string", |
| 146 | + "description": "The bulk operation ID to cancel (numeric ID or full GID).", |
| 147 | + "environmentValue": "SHOPIFY_FLAG_ID" |
| 148 | + }, |
| 149 | + { |
| 150 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 151 | + "syntaxKind": "PropertySignature", |
| 152 | + "name": "--no-color", |
| 153 | + "value": "\"\"", |
| 154 | + "description": "Disable color output.", |
| 155 | + "isOptional": true, |
| 156 | + "environmentValue": "SHOPIFY_FLAG_NO_COLOR" |
| 157 | + }, |
| 158 | + { |
| 159 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 160 | + "syntaxKind": "PropertySignature", |
| 161 | + "name": "--path <value>", |
| 162 | + "value": "string", |
| 163 | + "description": "The path to your app directory.", |
| 164 | + "isOptional": true, |
| 165 | + "environmentValue": "SHOPIFY_FLAG_PATH" |
| 166 | + }, |
| 167 | + { |
| 168 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 169 | + "syntaxKind": "PropertySignature", |
| 170 | + "name": "--reset", |
| 171 | + "value": "\"\"", |
| 172 | + "description": "Reset all your settings.", |
| 173 | + "isOptional": true, |
| 174 | + "environmentValue": "SHOPIFY_FLAG_RESET" |
| 175 | + }, |
| 176 | + { |
| 177 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 178 | + "syntaxKind": "PropertySignature", |
| 179 | + "name": "--verbose", |
| 180 | + "value": "\"\"", |
| 181 | + "description": "Increase the verbosity of the output.", |
| 182 | + "isOptional": true, |
| 183 | + "environmentValue": "SHOPIFY_FLAG_VERBOSE" |
| 184 | + }, |
| 185 | + { |
| 186 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 187 | + "syntaxKind": "PropertySignature", |
| 188 | + "name": "-c, --config <value>", |
| 189 | + "value": "string", |
| 190 | + "description": "The name of the app configuration.", |
| 191 | + "isOptional": true, |
| 192 | + "environmentValue": "SHOPIFY_FLAG_APP_CONFIG" |
| 193 | + }, |
| 194 | + { |
| 195 | + "filePath": "docs-shopify.dev/commands/interfaces/app-bulk-cancel.interface.ts", |
| 196 | + "syntaxKind": "PropertySignature", |
| 197 | + "name": "-s, --store <value>", |
| 198 | + "value": "string", |
| 199 | + "description": "The store domain. Must be an existing dev store.", |
| 200 | + "isOptional": true, |
| 201 | + "environmentValue": "SHOPIFY_FLAG_STORE" |
| 202 | + } |
| 203 | + ], |
| 204 | + "value": "export interface appbulkcancel {\n /**\n * The Client ID of your app.\n * @environment SHOPIFY_FLAG_CLIENT_ID\n */\n '--client-id <value>'?: string\n\n /**\n * The name of the app configuration.\n * @environment SHOPIFY_FLAG_APP_CONFIG\n */\n '-c, --config <value>'?: string\n\n /**\n * The bulk operation ID to cancel (numeric ID or full GID).\n * @environment SHOPIFY_FLAG_ID\n */\n '--id <value>': string\n\n /**\n * Disable color output.\n * @environment SHOPIFY_FLAG_NO_COLOR\n */\n '--no-color'?: ''\n\n /**\n * The path to your app directory.\n * @environment SHOPIFY_FLAG_PATH\n */\n '--path <value>'?: string\n\n /**\n * Reset all your settings.\n * @environment SHOPIFY_FLAG_RESET\n */\n '--reset'?: ''\n\n /**\n * The store domain. Must be an existing dev store.\n * @environment SHOPIFY_FLAG_STORE\n */\n '-s, --store <value>'?: string\n\n /**\n * Increase the verbosity of the output.\n * @environment SHOPIFY_FLAG_VERBOSE\n */\n '--verbose'?: ''\n}" |
| 205 | + } |
| 206 | + } |
| 207 | + } |
| 208 | + ], |
| 209 | + "category": "app", |
| 210 | + "related": [] |
| 211 | + }, |
103 | 212 | { |
104 | 213 | "name": "app bulk execute", |
105 | 214 | "description": "Executes an Admin API GraphQL query or mutation on the specified store, as a bulk operation. Mutations are only allowed on dev stores.\n\n Bulk operations allow you to process large amounts of data asynchronously. Learn more about [bulk query operations](/docs/api/usage/bulk-operations/queries) and [bulk mutation operations](/docs/api/usage/bulk-operations/imports).\n\n Use [`bulk status`](/docs/api/shopify-cli/app/app-bulk-status) to check the status of your bulk operations.", |
|
0 commit comments