-
Notifications
You must be signed in to change notification settings - Fork 251
Expand file tree
/
Copy pathstore-execute.interface.ts
More file actions
62 lines (53 loc) · 1.59 KB
/
store-execute.interface.ts
File metadata and controls
62 lines (53 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// This is an autogenerated file. Don't edit this file manually.
export interface storeexecute {
/**
* Allow GraphQL mutations to run against the target store.
* @environment SHOPIFY_FLAG_ALLOW_MUTATIONS
*/
'--allow-mutations'?: ''
/**
* Disable color output.
* @environment SHOPIFY_FLAG_NO_COLOR
*/
'--no-color'?: ''
/**
* The file name where results should be written, instead of STDOUT.
* @environment SHOPIFY_FLAG_OUTPUT_FILE
*/
'--output-file <value>'?: string
/**
* The GraphQL query or mutation, as a string.
* @environment SHOPIFY_FLAG_QUERY
*/
'-q, --query <value>'?: string
/**
* Path to a file containing the GraphQL query or mutation. Can't be used with --query.
* @environment SHOPIFY_FLAG_QUERY_FILE
*/
'--query-file <value>'?: string
/**
* The myshopify.com domain of the store to execute against.
* @environment SHOPIFY_FLAG_STORE
*/
'-s, --store <value>': string
/**
* Path to a file containing GraphQL variables in JSON format. Can't be used with --variables.
* @environment SHOPIFY_FLAG_VARIABLE_FILE
*/
'--variable-file <value>'?: string
/**
* The values for any GraphQL variables in your query or mutation, in JSON format.
* @environment SHOPIFY_FLAG_VARIABLES
*/
'-v, --variables <value>'?: string
/**
* Increase the verbosity of the output.
* @environment SHOPIFY_FLAG_VERBOSE
*/
'--verbose'?: ''
/**
* The API version to use for the query or mutation. Defaults to the latest stable version.
* @environment SHOPIFY_FLAG_VERSION
*/
'--version <value>'?: string
}