@soppiya/app-bridge 1.1.1 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/articles-picker/ui/ArticlesPicker.js +13 -7
- package/dist/components/blogs-picker/ui/BlogsPicker.js +13 -8
- package/dist/components/collections-pciker/ui/CollectionPicker.js +16 -10
- package/dist/components/collections-pciker/ui/CollectionPicker.stories.d.ts +1 -4
- package/dist/components/collections-pciker/ui/CollectionPicker.stories.js +1 -4
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/components/link-list-picker/api/query.d.ts +8 -0
- package/dist/components/link-list-picker/api/query.js +22 -0
- package/dist/components/link-list-picker/index.d.ts +1 -0
- package/dist/components/link-list-picker/index.js +2 -0
- package/dist/components/link-list-picker/model/useLinkList.d.ts +30 -0
- package/dist/components/link-list-picker/model/useLinkList.js +46 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.d.ts +9 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.js +104 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.stories.d.ts +14 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.stories.js +10 -0
- package/dist/components/meta-data/ui/MetaData.d.ts +2 -1
- package/dist/components/meta-data/ui/MetaData.js +9 -13
- package/dist/components/metafield-entries/api/query.d.ts +8 -0
- package/dist/components/metafield-entries/api/query.js +18 -0
- package/dist/components/metafield-entries/index.d.ts +0 -0
- package/dist/components/metafield-entries/index.js +0 -0
- package/dist/components/metafield-entries/model/useMetaobjectEntries.d.ts +25 -0
- package/dist/components/metafield-entries/model/useMetaobjectEntries.js +46 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.d.ts +10 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.js +108 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.stories.d.ts +15 -0
- package/dist/components/metafield-entries/ui/MetaobjectEntries.stories.js +10 -0
- package/dist/components/pages-picker/ui/PagesPicker.js +19 -11
- package/dist/components/products-picker/ui/ProductPicker.js +16 -10
- package/dist/components/variants-picker/ui/VariantsPicker.js +13 -7
- package/dist/shared/graphql/gql.d.ts +10 -0
- package/dist/shared/graphql/gql.js +3 -1
- package/dist/shared/graphql/graphql.d.ts +64 -0
- package/dist/shared/graphql/graphql.js +855 -233
- package/dist/styles.css +12 -4
- package/package.json +1 -1
|
@@ -1865,7 +1865,7 @@ const CollectionsDocument = {
|
|
|
1865
1865
|
}
|
|
1866
1866
|
]
|
|
1867
1867
|
};
|
|
1868
|
-
const
|
|
1868
|
+
const LinklistsDocument = {
|
|
1869
1869
|
kind: "Document",
|
|
1870
1870
|
definitions: [
|
|
1871
1871
|
{
|
|
@@ -1873,7 +1873,7 @@ const MediasDocument = {
|
|
|
1873
1873
|
operation: "query",
|
|
1874
1874
|
name: {
|
|
1875
1875
|
kind: "Name",
|
|
1876
|
-
value: "
|
|
1876
|
+
value: "Linklists"
|
|
1877
1877
|
},
|
|
1878
1878
|
variableDefinitions: [
|
|
1879
1879
|
{
|
|
@@ -1961,40 +1961,6 @@ const MediasDocument = {
|
|
|
1961
1961
|
}
|
|
1962
1962
|
}
|
|
1963
1963
|
},
|
|
1964
|
-
{
|
|
1965
|
-
kind: "VariableDefinition",
|
|
1966
|
-
variable: {
|
|
1967
|
-
kind: "Variable",
|
|
1968
|
-
name: {
|
|
1969
|
-
kind: "Name",
|
|
1970
|
-
value: "reverse"
|
|
1971
|
-
}
|
|
1972
|
-
},
|
|
1973
|
-
type: {
|
|
1974
|
-
kind: "NamedType",
|
|
1975
|
-
name: {
|
|
1976
|
-
kind: "Name",
|
|
1977
|
-
value: "Boolean"
|
|
1978
|
-
}
|
|
1979
|
-
}
|
|
1980
|
-
},
|
|
1981
|
-
{
|
|
1982
|
-
kind: "VariableDefinition",
|
|
1983
|
-
variable: {
|
|
1984
|
-
kind: "Variable",
|
|
1985
|
-
name: {
|
|
1986
|
-
kind: "Name",
|
|
1987
|
-
value: "sortKey"
|
|
1988
|
-
}
|
|
1989
|
-
},
|
|
1990
|
-
type: {
|
|
1991
|
-
kind: "NamedType",
|
|
1992
|
-
name: {
|
|
1993
|
-
kind: "Name",
|
|
1994
|
-
value: "MediaSortKeys"
|
|
1995
|
-
}
|
|
1996
|
-
}
|
|
1997
|
-
},
|
|
1998
1964
|
{
|
|
1999
1965
|
kind: "VariableDefinition",
|
|
2000
1966
|
variable: {
|
|
@@ -2008,7 +1974,7 @@ const MediasDocument = {
|
|
|
2008
1974
|
kind: "NamedType",
|
|
2009
1975
|
name: {
|
|
2010
1976
|
kind: "Name",
|
|
2011
|
-
value: "
|
|
1977
|
+
value: "LinklistFilterKeys"
|
|
2012
1978
|
}
|
|
2013
1979
|
}
|
|
2014
1980
|
}
|
|
@@ -2020,7 +1986,7 @@ const MediasDocument = {
|
|
|
2020
1986
|
kind: "Field",
|
|
2021
1987
|
name: {
|
|
2022
1988
|
kind: "Name",
|
|
2023
|
-
value: "
|
|
1989
|
+
value: "linklists"
|
|
2024
1990
|
},
|
|
2025
1991
|
arguments: [
|
|
2026
1992
|
{
|
|
@@ -2093,34 +2059,6 @@ const MediasDocument = {
|
|
|
2093
2059
|
}
|
|
2094
2060
|
}
|
|
2095
2061
|
},
|
|
2096
|
-
{
|
|
2097
|
-
kind: "Argument",
|
|
2098
|
-
name: {
|
|
2099
|
-
kind: "Name",
|
|
2100
|
-
value: "reverse"
|
|
2101
|
-
},
|
|
2102
|
-
value: {
|
|
2103
|
-
kind: "Variable",
|
|
2104
|
-
name: {
|
|
2105
|
-
kind: "Name",
|
|
2106
|
-
value: "reverse"
|
|
2107
|
-
}
|
|
2108
|
-
}
|
|
2109
|
-
},
|
|
2110
|
-
{
|
|
2111
|
-
kind: "Argument",
|
|
2112
|
-
name: {
|
|
2113
|
-
kind: "Name",
|
|
2114
|
-
value: "sortKey"
|
|
2115
|
-
},
|
|
2116
|
-
value: {
|
|
2117
|
-
kind: "Variable",
|
|
2118
|
-
name: {
|
|
2119
|
-
kind: "Name",
|
|
2120
|
-
value: "sortKey"
|
|
2121
|
-
}
|
|
2122
|
-
}
|
|
2123
|
-
},
|
|
2124
2062
|
{
|
|
2125
2063
|
kind: "Argument",
|
|
2126
2064
|
name: {
|
|
@@ -2139,72 +2077,6 @@ const MediasDocument = {
|
|
|
2139
2077
|
selectionSet: {
|
|
2140
2078
|
kind: "SelectionSet",
|
|
2141
2079
|
selections: [
|
|
2142
|
-
{
|
|
2143
|
-
kind: "Field",
|
|
2144
|
-
name: {
|
|
2145
|
-
kind: "Name",
|
|
2146
|
-
value: "edges"
|
|
2147
|
-
},
|
|
2148
|
-
selectionSet: {
|
|
2149
|
-
kind: "SelectionSet",
|
|
2150
|
-
selections: [
|
|
2151
|
-
{
|
|
2152
|
-
kind: "Field",
|
|
2153
|
-
name: {
|
|
2154
|
-
kind: "Name",
|
|
2155
|
-
value: "node"
|
|
2156
|
-
},
|
|
2157
|
-
selectionSet: {
|
|
2158
|
-
kind: "SelectionSet",
|
|
2159
|
-
selections: [
|
|
2160
|
-
{
|
|
2161
|
-
kind: "Field",
|
|
2162
|
-
name: {
|
|
2163
|
-
kind: "Name",
|
|
2164
|
-
value: "_id"
|
|
2165
|
-
}
|
|
2166
|
-
},
|
|
2167
|
-
{
|
|
2168
|
-
kind: "Field",
|
|
2169
|
-
name: {
|
|
2170
|
-
kind: "Name",
|
|
2171
|
-
value: "file_name"
|
|
2172
|
-
}
|
|
2173
|
-
},
|
|
2174
|
-
{
|
|
2175
|
-
kind: "Field",
|
|
2176
|
-
name: {
|
|
2177
|
-
kind: "Name",
|
|
2178
|
-
value: "url"
|
|
2179
|
-
}
|
|
2180
|
-
},
|
|
2181
|
-
{
|
|
2182
|
-
kind: "Field",
|
|
2183
|
-
name: {
|
|
2184
|
-
kind: "Name",
|
|
2185
|
-
value: "size"
|
|
2186
|
-
}
|
|
2187
|
-
},
|
|
2188
|
-
{
|
|
2189
|
-
kind: "Field",
|
|
2190
|
-
name: {
|
|
2191
|
-
kind: "Name",
|
|
2192
|
-
value: "type"
|
|
2193
|
-
}
|
|
2194
|
-
},
|
|
2195
|
-
{
|
|
2196
|
-
kind: "Field",
|
|
2197
|
-
name: {
|
|
2198
|
-
kind: "Name",
|
|
2199
|
-
value: "mimetype"
|
|
2200
|
-
}
|
|
2201
|
-
}
|
|
2202
|
-
]
|
|
2203
|
-
}
|
|
2204
|
-
}
|
|
2205
|
-
]
|
|
2206
|
-
}
|
|
2207
|
-
},
|
|
2208
2080
|
{
|
|
2209
2081
|
kind: "Field",
|
|
2210
2082
|
name: {
|
|
@@ -2244,49 +2116,12 @@ const MediasDocument = {
|
|
|
2244
2116
|
}
|
|
2245
2117
|
]
|
|
2246
2118
|
}
|
|
2247
|
-
}
|
|
2248
|
-
]
|
|
2249
|
-
}
|
|
2250
|
-
}
|
|
2251
|
-
]
|
|
2252
|
-
}
|
|
2253
|
-
}
|
|
2254
|
-
]
|
|
2255
|
-
};
|
|
2256
|
-
const StoragePlanDocument = {
|
|
2257
|
-
kind: "Document",
|
|
2258
|
-
definitions: [
|
|
2259
|
-
{
|
|
2260
|
-
kind: "OperationDefinition",
|
|
2261
|
-
operation: "query",
|
|
2262
|
-
name: {
|
|
2263
|
-
kind: "Name",
|
|
2264
|
-
value: "StoragePlan"
|
|
2265
|
-
},
|
|
2266
|
-
selectionSet: {
|
|
2267
|
-
kind: "SelectionSet",
|
|
2268
|
-
selections: [
|
|
2269
|
-
{
|
|
2270
|
-
kind: "Field",
|
|
2271
|
-
name: {
|
|
2272
|
-
kind: "Name",
|
|
2273
|
-
value: "plan"
|
|
2274
|
-
},
|
|
2275
|
-
selectionSet: {
|
|
2276
|
-
kind: "SelectionSet",
|
|
2277
|
-
selections: [
|
|
2278
|
-
{
|
|
2279
|
-
kind: "Field",
|
|
2280
|
-
name: {
|
|
2281
|
-
kind: "Name",
|
|
2282
|
-
value: "storage"
|
|
2283
|
-
}
|
|
2284
2119
|
},
|
|
2285
2120
|
{
|
|
2286
2121
|
kind: "Field",
|
|
2287
2122
|
name: {
|
|
2288
2123
|
kind: "Name",
|
|
2289
|
-
value: "
|
|
2124
|
+
value: "edges"
|
|
2290
2125
|
},
|
|
2291
2126
|
selectionSet: {
|
|
2292
2127
|
kind: "SelectionSet",
|
|
@@ -2295,14 +2130,52 @@ const StoragePlanDocument = {
|
|
|
2295
2130
|
kind: "Field",
|
|
2296
2131
|
name: {
|
|
2297
2132
|
kind: "Name",
|
|
2298
|
-
value: "
|
|
2299
|
-
}
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2133
|
+
value: "node"
|
|
2134
|
+
},
|
|
2135
|
+
selectionSet: {
|
|
2136
|
+
kind: "SelectionSet",
|
|
2137
|
+
selections: [
|
|
2138
|
+
{
|
|
2139
|
+
kind: "Field",
|
|
2140
|
+
name: {
|
|
2141
|
+
kind: "Name",
|
|
2142
|
+
value: "_id"
|
|
2143
|
+
}
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
kind: "Field",
|
|
2147
|
+
name: {
|
|
2148
|
+
kind: "Name",
|
|
2149
|
+
value: "title"
|
|
2150
|
+
}
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
kind: "Field",
|
|
2154
|
+
name: {
|
|
2155
|
+
kind: "Name",
|
|
2156
|
+
value: "links"
|
|
2157
|
+
},
|
|
2158
|
+
selectionSet: {
|
|
2159
|
+
kind: "SelectionSet",
|
|
2160
|
+
selections: [
|
|
2161
|
+
{
|
|
2162
|
+
kind: "Field",
|
|
2163
|
+
name: {
|
|
2164
|
+
kind: "Name",
|
|
2165
|
+
value: "url"
|
|
2166
|
+
}
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
kind: "Field",
|
|
2170
|
+
name: {
|
|
2171
|
+
kind: "Name",
|
|
2172
|
+
value: "_id"
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
]
|
|
2176
|
+
}
|
|
2177
|
+
}
|
|
2178
|
+
]
|
|
2306
2179
|
}
|
|
2307
2180
|
}
|
|
2308
2181
|
]
|
|
@@ -2316,7 +2189,7 @@ const StoragePlanDocument = {
|
|
|
2316
2189
|
}
|
|
2317
2190
|
]
|
|
2318
2191
|
};
|
|
2319
|
-
const
|
|
2192
|
+
const MediasDocument = {
|
|
2320
2193
|
kind: "Document",
|
|
2321
2194
|
definitions: [
|
|
2322
2195
|
{
|
|
@@ -2324,32 +2197,7 @@ const MediaUsageDocument = {
|
|
|
2324
2197
|
operation: "query",
|
|
2325
2198
|
name: {
|
|
2326
2199
|
kind: "Name",
|
|
2327
|
-
value: "
|
|
2328
|
-
},
|
|
2329
|
-
selectionSet: {
|
|
2330
|
-
kind: "SelectionSet",
|
|
2331
|
-
selections: [
|
|
2332
|
-
{
|
|
2333
|
-
kind: "Field",
|
|
2334
|
-
name: {
|
|
2335
|
-
kind: "Name",
|
|
2336
|
-
value: "mediaUsage"
|
|
2337
|
-
}
|
|
2338
|
-
}
|
|
2339
|
-
]
|
|
2340
|
-
}
|
|
2341
|
-
}
|
|
2342
|
-
]
|
|
2343
|
-
};
|
|
2344
|
-
const AddMediasDocument = {
|
|
2345
|
-
kind: "Document",
|
|
2346
|
-
definitions: [
|
|
2347
|
-
{
|
|
2348
|
-
kind: "OperationDefinition",
|
|
2349
|
-
operation: "mutation",
|
|
2350
|
-
name: {
|
|
2351
|
-
kind: "Name",
|
|
2352
|
-
value: "AddMedias"
|
|
2200
|
+
value: "Medias"
|
|
2353
2201
|
},
|
|
2354
2202
|
variableDefinitions: [
|
|
2355
2203
|
{
|
|
@@ -2358,11 +2206,487 @@ const AddMediasDocument = {
|
|
|
2358
2206
|
kind: "Variable",
|
|
2359
2207
|
name: {
|
|
2360
2208
|
kind: "Name",
|
|
2361
|
-
value: "
|
|
2209
|
+
value: "after"
|
|
2362
2210
|
}
|
|
2363
2211
|
},
|
|
2364
2212
|
type: {
|
|
2365
|
-
kind: "
|
|
2213
|
+
kind: "NamedType",
|
|
2214
|
+
name: {
|
|
2215
|
+
kind: "Name",
|
|
2216
|
+
value: "ID"
|
|
2217
|
+
}
|
|
2218
|
+
}
|
|
2219
|
+
},
|
|
2220
|
+
{
|
|
2221
|
+
kind: "VariableDefinition",
|
|
2222
|
+
variable: {
|
|
2223
|
+
kind: "Variable",
|
|
2224
|
+
name: {
|
|
2225
|
+
kind: "Name",
|
|
2226
|
+
value: "before"
|
|
2227
|
+
}
|
|
2228
|
+
},
|
|
2229
|
+
type: {
|
|
2230
|
+
kind: "NamedType",
|
|
2231
|
+
name: {
|
|
2232
|
+
kind: "Name",
|
|
2233
|
+
value: "ID"
|
|
2234
|
+
}
|
|
2235
|
+
}
|
|
2236
|
+
},
|
|
2237
|
+
{
|
|
2238
|
+
kind: "VariableDefinition",
|
|
2239
|
+
variable: {
|
|
2240
|
+
kind: "Variable",
|
|
2241
|
+
name: {
|
|
2242
|
+
kind: "Name",
|
|
2243
|
+
value: "first"
|
|
2244
|
+
}
|
|
2245
|
+
},
|
|
2246
|
+
type: {
|
|
2247
|
+
kind: "NamedType",
|
|
2248
|
+
name: {
|
|
2249
|
+
kind: "Name",
|
|
2250
|
+
value: "Int"
|
|
2251
|
+
}
|
|
2252
|
+
}
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
kind: "VariableDefinition",
|
|
2256
|
+
variable: {
|
|
2257
|
+
kind: "Variable",
|
|
2258
|
+
name: {
|
|
2259
|
+
kind: "Name",
|
|
2260
|
+
value: "last"
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
type: {
|
|
2264
|
+
kind: "NamedType",
|
|
2265
|
+
name: {
|
|
2266
|
+
kind: "Name",
|
|
2267
|
+
value: "Int"
|
|
2268
|
+
}
|
|
2269
|
+
}
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
kind: "VariableDefinition",
|
|
2273
|
+
variable: {
|
|
2274
|
+
kind: "Variable",
|
|
2275
|
+
name: {
|
|
2276
|
+
kind: "Name",
|
|
2277
|
+
value: "query"
|
|
2278
|
+
}
|
|
2279
|
+
},
|
|
2280
|
+
type: {
|
|
2281
|
+
kind: "NamedType",
|
|
2282
|
+
name: {
|
|
2283
|
+
kind: "Name",
|
|
2284
|
+
value: "String"
|
|
2285
|
+
}
|
|
2286
|
+
}
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
kind: "VariableDefinition",
|
|
2290
|
+
variable: {
|
|
2291
|
+
kind: "Variable",
|
|
2292
|
+
name: {
|
|
2293
|
+
kind: "Name",
|
|
2294
|
+
value: "reverse"
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
2297
|
+
type: {
|
|
2298
|
+
kind: "NamedType",
|
|
2299
|
+
name: {
|
|
2300
|
+
kind: "Name",
|
|
2301
|
+
value: "Boolean"
|
|
2302
|
+
}
|
|
2303
|
+
}
|
|
2304
|
+
},
|
|
2305
|
+
{
|
|
2306
|
+
kind: "VariableDefinition",
|
|
2307
|
+
variable: {
|
|
2308
|
+
kind: "Variable",
|
|
2309
|
+
name: {
|
|
2310
|
+
kind: "Name",
|
|
2311
|
+
value: "sortKey"
|
|
2312
|
+
}
|
|
2313
|
+
},
|
|
2314
|
+
type: {
|
|
2315
|
+
kind: "NamedType",
|
|
2316
|
+
name: {
|
|
2317
|
+
kind: "Name",
|
|
2318
|
+
value: "MediaSortKeys"
|
|
2319
|
+
}
|
|
2320
|
+
}
|
|
2321
|
+
},
|
|
2322
|
+
{
|
|
2323
|
+
kind: "VariableDefinition",
|
|
2324
|
+
variable: {
|
|
2325
|
+
kind: "Variable",
|
|
2326
|
+
name: {
|
|
2327
|
+
kind: "Name",
|
|
2328
|
+
value: "filterKeys"
|
|
2329
|
+
}
|
|
2330
|
+
},
|
|
2331
|
+
type: {
|
|
2332
|
+
kind: "NamedType",
|
|
2333
|
+
name: {
|
|
2334
|
+
kind: "Name",
|
|
2335
|
+
value: "MediaFilterKeys"
|
|
2336
|
+
}
|
|
2337
|
+
}
|
|
2338
|
+
}
|
|
2339
|
+
],
|
|
2340
|
+
selectionSet: {
|
|
2341
|
+
kind: "SelectionSet",
|
|
2342
|
+
selections: [
|
|
2343
|
+
{
|
|
2344
|
+
kind: "Field",
|
|
2345
|
+
name: {
|
|
2346
|
+
kind: "Name",
|
|
2347
|
+
value: "medias"
|
|
2348
|
+
},
|
|
2349
|
+
arguments: [
|
|
2350
|
+
{
|
|
2351
|
+
kind: "Argument",
|
|
2352
|
+
name: {
|
|
2353
|
+
kind: "Name",
|
|
2354
|
+
value: "after"
|
|
2355
|
+
},
|
|
2356
|
+
value: {
|
|
2357
|
+
kind: "Variable",
|
|
2358
|
+
name: {
|
|
2359
|
+
kind: "Name",
|
|
2360
|
+
value: "after"
|
|
2361
|
+
}
|
|
2362
|
+
}
|
|
2363
|
+
},
|
|
2364
|
+
{
|
|
2365
|
+
kind: "Argument",
|
|
2366
|
+
name: {
|
|
2367
|
+
kind: "Name",
|
|
2368
|
+
value: "before"
|
|
2369
|
+
},
|
|
2370
|
+
value: {
|
|
2371
|
+
kind: "Variable",
|
|
2372
|
+
name: {
|
|
2373
|
+
kind: "Name",
|
|
2374
|
+
value: "before"
|
|
2375
|
+
}
|
|
2376
|
+
}
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
kind: "Argument",
|
|
2380
|
+
name: {
|
|
2381
|
+
kind: "Name",
|
|
2382
|
+
value: "first"
|
|
2383
|
+
},
|
|
2384
|
+
value: {
|
|
2385
|
+
kind: "Variable",
|
|
2386
|
+
name: {
|
|
2387
|
+
kind: "Name",
|
|
2388
|
+
value: "first"
|
|
2389
|
+
}
|
|
2390
|
+
}
|
|
2391
|
+
},
|
|
2392
|
+
{
|
|
2393
|
+
kind: "Argument",
|
|
2394
|
+
name: {
|
|
2395
|
+
kind: "Name",
|
|
2396
|
+
value: "last"
|
|
2397
|
+
},
|
|
2398
|
+
value: {
|
|
2399
|
+
kind: "Variable",
|
|
2400
|
+
name: {
|
|
2401
|
+
kind: "Name",
|
|
2402
|
+
value: "last"
|
|
2403
|
+
}
|
|
2404
|
+
}
|
|
2405
|
+
},
|
|
2406
|
+
{
|
|
2407
|
+
kind: "Argument",
|
|
2408
|
+
name: {
|
|
2409
|
+
kind: "Name",
|
|
2410
|
+
value: "query"
|
|
2411
|
+
},
|
|
2412
|
+
value: {
|
|
2413
|
+
kind: "Variable",
|
|
2414
|
+
name: {
|
|
2415
|
+
kind: "Name",
|
|
2416
|
+
value: "query"
|
|
2417
|
+
}
|
|
2418
|
+
}
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
kind: "Argument",
|
|
2422
|
+
name: {
|
|
2423
|
+
kind: "Name",
|
|
2424
|
+
value: "reverse"
|
|
2425
|
+
},
|
|
2426
|
+
value: {
|
|
2427
|
+
kind: "Variable",
|
|
2428
|
+
name: {
|
|
2429
|
+
kind: "Name",
|
|
2430
|
+
value: "reverse"
|
|
2431
|
+
}
|
|
2432
|
+
}
|
|
2433
|
+
},
|
|
2434
|
+
{
|
|
2435
|
+
kind: "Argument",
|
|
2436
|
+
name: {
|
|
2437
|
+
kind: "Name",
|
|
2438
|
+
value: "sortKey"
|
|
2439
|
+
},
|
|
2440
|
+
value: {
|
|
2441
|
+
kind: "Variable",
|
|
2442
|
+
name: {
|
|
2443
|
+
kind: "Name",
|
|
2444
|
+
value: "sortKey"
|
|
2445
|
+
}
|
|
2446
|
+
}
|
|
2447
|
+
},
|
|
2448
|
+
{
|
|
2449
|
+
kind: "Argument",
|
|
2450
|
+
name: {
|
|
2451
|
+
kind: "Name",
|
|
2452
|
+
value: "filterKeys"
|
|
2453
|
+
},
|
|
2454
|
+
value: {
|
|
2455
|
+
kind: "Variable",
|
|
2456
|
+
name: {
|
|
2457
|
+
kind: "Name",
|
|
2458
|
+
value: "filterKeys"
|
|
2459
|
+
}
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
],
|
|
2463
|
+
selectionSet: {
|
|
2464
|
+
kind: "SelectionSet",
|
|
2465
|
+
selections: [
|
|
2466
|
+
{
|
|
2467
|
+
kind: "Field",
|
|
2468
|
+
name: {
|
|
2469
|
+
kind: "Name",
|
|
2470
|
+
value: "edges"
|
|
2471
|
+
},
|
|
2472
|
+
selectionSet: {
|
|
2473
|
+
kind: "SelectionSet",
|
|
2474
|
+
selections: [
|
|
2475
|
+
{
|
|
2476
|
+
kind: "Field",
|
|
2477
|
+
name: {
|
|
2478
|
+
kind: "Name",
|
|
2479
|
+
value: "node"
|
|
2480
|
+
},
|
|
2481
|
+
selectionSet: {
|
|
2482
|
+
kind: "SelectionSet",
|
|
2483
|
+
selections: [
|
|
2484
|
+
{
|
|
2485
|
+
kind: "Field",
|
|
2486
|
+
name: {
|
|
2487
|
+
kind: "Name",
|
|
2488
|
+
value: "_id"
|
|
2489
|
+
}
|
|
2490
|
+
},
|
|
2491
|
+
{
|
|
2492
|
+
kind: "Field",
|
|
2493
|
+
name: {
|
|
2494
|
+
kind: "Name",
|
|
2495
|
+
value: "file_name"
|
|
2496
|
+
}
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
kind: "Field",
|
|
2500
|
+
name: {
|
|
2501
|
+
kind: "Name",
|
|
2502
|
+
value: "url"
|
|
2503
|
+
}
|
|
2504
|
+
},
|
|
2505
|
+
{
|
|
2506
|
+
kind: "Field",
|
|
2507
|
+
name: {
|
|
2508
|
+
kind: "Name",
|
|
2509
|
+
value: "size"
|
|
2510
|
+
}
|
|
2511
|
+
},
|
|
2512
|
+
{
|
|
2513
|
+
kind: "Field",
|
|
2514
|
+
name: {
|
|
2515
|
+
kind: "Name",
|
|
2516
|
+
value: "type"
|
|
2517
|
+
}
|
|
2518
|
+
},
|
|
2519
|
+
{
|
|
2520
|
+
kind: "Field",
|
|
2521
|
+
name: {
|
|
2522
|
+
kind: "Name",
|
|
2523
|
+
value: "mimetype"
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
]
|
|
2527
|
+
}
|
|
2528
|
+
}
|
|
2529
|
+
]
|
|
2530
|
+
}
|
|
2531
|
+
},
|
|
2532
|
+
{
|
|
2533
|
+
kind: "Field",
|
|
2534
|
+
name: {
|
|
2535
|
+
kind: "Name",
|
|
2536
|
+
value: "pageInfo"
|
|
2537
|
+
},
|
|
2538
|
+
selectionSet: {
|
|
2539
|
+
kind: "SelectionSet",
|
|
2540
|
+
selections: [
|
|
2541
|
+
{
|
|
2542
|
+
kind: "Field",
|
|
2543
|
+
name: {
|
|
2544
|
+
kind: "Name",
|
|
2545
|
+
value: "endCursor"
|
|
2546
|
+
}
|
|
2547
|
+
},
|
|
2548
|
+
{
|
|
2549
|
+
kind: "Field",
|
|
2550
|
+
name: {
|
|
2551
|
+
kind: "Name",
|
|
2552
|
+
value: "hasNextPage"
|
|
2553
|
+
}
|
|
2554
|
+
},
|
|
2555
|
+
{
|
|
2556
|
+
kind: "Field",
|
|
2557
|
+
name: {
|
|
2558
|
+
kind: "Name",
|
|
2559
|
+
value: "hasPreviousPage"
|
|
2560
|
+
}
|
|
2561
|
+
},
|
|
2562
|
+
{
|
|
2563
|
+
kind: "Field",
|
|
2564
|
+
name: {
|
|
2565
|
+
kind: "Name",
|
|
2566
|
+
value: "startCursor"
|
|
2567
|
+
}
|
|
2568
|
+
}
|
|
2569
|
+
]
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
]
|
|
2573
|
+
}
|
|
2574
|
+
}
|
|
2575
|
+
]
|
|
2576
|
+
}
|
|
2577
|
+
}
|
|
2578
|
+
]
|
|
2579
|
+
};
|
|
2580
|
+
const StoragePlanDocument = {
|
|
2581
|
+
kind: "Document",
|
|
2582
|
+
definitions: [
|
|
2583
|
+
{
|
|
2584
|
+
kind: "OperationDefinition",
|
|
2585
|
+
operation: "query",
|
|
2586
|
+
name: {
|
|
2587
|
+
kind: "Name",
|
|
2588
|
+
value: "StoragePlan"
|
|
2589
|
+
},
|
|
2590
|
+
selectionSet: {
|
|
2591
|
+
kind: "SelectionSet",
|
|
2592
|
+
selections: [
|
|
2593
|
+
{
|
|
2594
|
+
kind: "Field",
|
|
2595
|
+
name: {
|
|
2596
|
+
kind: "Name",
|
|
2597
|
+
value: "plan"
|
|
2598
|
+
},
|
|
2599
|
+
selectionSet: {
|
|
2600
|
+
kind: "SelectionSet",
|
|
2601
|
+
selections: [
|
|
2602
|
+
{
|
|
2603
|
+
kind: "Field",
|
|
2604
|
+
name: {
|
|
2605
|
+
kind: "Name",
|
|
2606
|
+
value: "storage"
|
|
2607
|
+
}
|
|
2608
|
+
},
|
|
2609
|
+
{
|
|
2610
|
+
kind: "Field",
|
|
2611
|
+
name: {
|
|
2612
|
+
kind: "Name",
|
|
2613
|
+
value: "package"
|
|
2614
|
+
},
|
|
2615
|
+
selectionSet: {
|
|
2616
|
+
kind: "SelectionSet",
|
|
2617
|
+
selections: [
|
|
2618
|
+
{
|
|
2619
|
+
kind: "Field",
|
|
2620
|
+
name: {
|
|
2621
|
+
kind: "Name",
|
|
2622
|
+
value: "_id"
|
|
2623
|
+
}
|
|
2624
|
+
},
|
|
2625
|
+
{
|
|
2626
|
+
kind: "Field",
|
|
2627
|
+
name: {
|
|
2628
|
+
kind: "Name",
|
|
2629
|
+
value: "storage"
|
|
2630
|
+
}
|
|
2631
|
+
}
|
|
2632
|
+
]
|
|
2633
|
+
}
|
|
2634
|
+
}
|
|
2635
|
+
]
|
|
2636
|
+
}
|
|
2637
|
+
}
|
|
2638
|
+
]
|
|
2639
|
+
}
|
|
2640
|
+
}
|
|
2641
|
+
]
|
|
2642
|
+
};
|
|
2643
|
+
const MediaUsageDocument = {
|
|
2644
|
+
kind: "Document",
|
|
2645
|
+
definitions: [
|
|
2646
|
+
{
|
|
2647
|
+
kind: "OperationDefinition",
|
|
2648
|
+
operation: "query",
|
|
2649
|
+
name: {
|
|
2650
|
+
kind: "Name",
|
|
2651
|
+
value: "MediaUsage"
|
|
2652
|
+
},
|
|
2653
|
+
selectionSet: {
|
|
2654
|
+
kind: "SelectionSet",
|
|
2655
|
+
selections: [
|
|
2656
|
+
{
|
|
2657
|
+
kind: "Field",
|
|
2658
|
+
name: {
|
|
2659
|
+
kind: "Name",
|
|
2660
|
+
value: "mediaUsage"
|
|
2661
|
+
}
|
|
2662
|
+
}
|
|
2663
|
+
]
|
|
2664
|
+
}
|
|
2665
|
+
}
|
|
2666
|
+
]
|
|
2667
|
+
};
|
|
2668
|
+
const AddMediasDocument = {
|
|
2669
|
+
kind: "Document",
|
|
2670
|
+
definitions: [
|
|
2671
|
+
{
|
|
2672
|
+
kind: "OperationDefinition",
|
|
2673
|
+
operation: "mutation",
|
|
2674
|
+
name: {
|
|
2675
|
+
kind: "Name",
|
|
2676
|
+
value: "AddMedias"
|
|
2677
|
+
},
|
|
2678
|
+
variableDefinitions: [
|
|
2679
|
+
{
|
|
2680
|
+
kind: "VariableDefinition",
|
|
2681
|
+
variable: {
|
|
2682
|
+
kind: "Variable",
|
|
2683
|
+
name: {
|
|
2684
|
+
kind: "Name",
|
|
2685
|
+
value: "input"
|
|
2686
|
+
}
|
|
2687
|
+
},
|
|
2688
|
+
type: {
|
|
2689
|
+
kind: "NonNullType",
|
|
2366
2690
|
type: {
|
|
2367
2691
|
kind: "ListType",
|
|
2368
2692
|
type: {
|
|
@@ -2495,13 +2819,116 @@ const DeleteMediasDocument = {
|
|
|
2495
2819
|
kind: "Argument",
|
|
2496
2820
|
name: {
|
|
2497
2821
|
kind: "Name",
|
|
2498
|
-
value: "cursors"
|
|
2822
|
+
value: "cursors"
|
|
2823
|
+
},
|
|
2824
|
+
value: {
|
|
2825
|
+
kind: "Variable",
|
|
2826
|
+
name: {
|
|
2827
|
+
kind: "Name",
|
|
2828
|
+
value: "cursors"
|
|
2829
|
+
}
|
|
2830
|
+
}
|
|
2831
|
+
}
|
|
2832
|
+
],
|
|
2833
|
+
selectionSet: {
|
|
2834
|
+
kind: "SelectionSet",
|
|
2835
|
+
selections: [
|
|
2836
|
+
{
|
|
2837
|
+
kind: "Field",
|
|
2838
|
+
name: {
|
|
2839
|
+
kind: "Name",
|
|
2840
|
+
value: "message"
|
|
2841
|
+
}
|
|
2842
|
+
}
|
|
2843
|
+
]
|
|
2844
|
+
}
|
|
2845
|
+
}
|
|
2846
|
+
]
|
|
2847
|
+
}
|
|
2848
|
+
}
|
|
2849
|
+
]
|
|
2850
|
+
};
|
|
2851
|
+
const MetafieldsDocument = {
|
|
2852
|
+
kind: "Document",
|
|
2853
|
+
definitions: [
|
|
2854
|
+
{
|
|
2855
|
+
kind: "OperationDefinition",
|
|
2856
|
+
operation: "query",
|
|
2857
|
+
name: {
|
|
2858
|
+
kind: "Name",
|
|
2859
|
+
value: "Metafields"
|
|
2860
|
+
},
|
|
2861
|
+
variableDefinitions: [
|
|
2862
|
+
{
|
|
2863
|
+
kind: "VariableDefinition",
|
|
2864
|
+
variable: {
|
|
2865
|
+
kind: "Variable",
|
|
2866
|
+
name: {
|
|
2867
|
+
kind: "Name",
|
|
2868
|
+
value: "filterKeys"
|
|
2869
|
+
}
|
|
2870
|
+
},
|
|
2871
|
+
type: {
|
|
2872
|
+
kind: "NamedType",
|
|
2873
|
+
name: {
|
|
2874
|
+
kind: "Name",
|
|
2875
|
+
value: "MetafieldFilterKeys"
|
|
2876
|
+
}
|
|
2877
|
+
}
|
|
2878
|
+
},
|
|
2879
|
+
{
|
|
2880
|
+
kind: "VariableDefinition",
|
|
2881
|
+
variable: {
|
|
2882
|
+
kind: "Variable",
|
|
2883
|
+
name: {
|
|
2884
|
+
kind: "Name",
|
|
2885
|
+
value: "first"
|
|
2886
|
+
}
|
|
2887
|
+
},
|
|
2888
|
+
type: {
|
|
2889
|
+
kind: "NamedType",
|
|
2890
|
+
name: {
|
|
2891
|
+
kind: "Name",
|
|
2892
|
+
value: "Int"
|
|
2893
|
+
}
|
|
2894
|
+
}
|
|
2895
|
+
}
|
|
2896
|
+
],
|
|
2897
|
+
selectionSet: {
|
|
2898
|
+
kind: "SelectionSet",
|
|
2899
|
+
selections: [
|
|
2900
|
+
{
|
|
2901
|
+
kind: "Field",
|
|
2902
|
+
name: {
|
|
2903
|
+
kind: "Name",
|
|
2904
|
+
value: "metafields"
|
|
2905
|
+
},
|
|
2906
|
+
arguments: [
|
|
2907
|
+
{
|
|
2908
|
+
kind: "Argument",
|
|
2909
|
+
name: {
|
|
2910
|
+
kind: "Name",
|
|
2911
|
+
value: "filterKeys"
|
|
2499
2912
|
},
|
|
2500
2913
|
value: {
|
|
2501
2914
|
kind: "Variable",
|
|
2502
2915
|
name: {
|
|
2503
2916
|
kind: "Name",
|
|
2504
|
-
value: "
|
|
2917
|
+
value: "filterKeys"
|
|
2918
|
+
}
|
|
2919
|
+
}
|
|
2920
|
+
},
|
|
2921
|
+
{
|
|
2922
|
+
kind: "Argument",
|
|
2923
|
+
name: {
|
|
2924
|
+
kind: "Name",
|
|
2925
|
+
value: "first"
|
|
2926
|
+
},
|
|
2927
|
+
value: {
|
|
2928
|
+
kind: "Variable",
|
|
2929
|
+
name: {
|
|
2930
|
+
kind: "Name",
|
|
2931
|
+
value: "first"
|
|
2505
2932
|
}
|
|
2506
2933
|
}
|
|
2507
2934
|
}
|
|
@@ -2513,7 +2940,52 @@ const DeleteMediasDocument = {
|
|
|
2513
2940
|
kind: "Field",
|
|
2514
2941
|
name: {
|
|
2515
2942
|
kind: "Name",
|
|
2516
|
-
value: "
|
|
2943
|
+
value: "edges"
|
|
2944
|
+
},
|
|
2945
|
+
selectionSet: {
|
|
2946
|
+
kind: "SelectionSet",
|
|
2947
|
+
selections: [
|
|
2948
|
+
{
|
|
2949
|
+
kind: "Field",
|
|
2950
|
+
name: {
|
|
2951
|
+
kind: "Name",
|
|
2952
|
+
value: "node"
|
|
2953
|
+
},
|
|
2954
|
+
selectionSet: {
|
|
2955
|
+
kind: "SelectionSet",
|
|
2956
|
+
selections: [
|
|
2957
|
+
{
|
|
2958
|
+
kind: "Field",
|
|
2959
|
+
name: {
|
|
2960
|
+
kind: "Name",
|
|
2961
|
+
value: "_id"
|
|
2962
|
+
}
|
|
2963
|
+
},
|
|
2964
|
+
{
|
|
2965
|
+
kind: "Field",
|
|
2966
|
+
name: {
|
|
2967
|
+
kind: "Name",
|
|
2968
|
+
value: "entry"
|
|
2969
|
+
}
|
|
2970
|
+
},
|
|
2971
|
+
{
|
|
2972
|
+
kind: "Field",
|
|
2973
|
+
name: {
|
|
2974
|
+
kind: "Name",
|
|
2975
|
+
value: "name"
|
|
2976
|
+
}
|
|
2977
|
+
},
|
|
2978
|
+
{
|
|
2979
|
+
kind: "Field",
|
|
2980
|
+
name: {
|
|
2981
|
+
kind: "Name",
|
|
2982
|
+
value: "type"
|
|
2983
|
+
}
|
|
2984
|
+
}
|
|
2985
|
+
]
|
|
2986
|
+
}
|
|
2987
|
+
}
|
|
2988
|
+
]
|
|
2517
2989
|
}
|
|
2518
2990
|
}
|
|
2519
2991
|
]
|
|
@@ -2524,7 +2996,7 @@ const DeleteMediasDocument = {
|
|
|
2524
2996
|
}
|
|
2525
2997
|
]
|
|
2526
2998
|
};
|
|
2527
|
-
const
|
|
2999
|
+
const MetaobjectEntriesDocument = {
|
|
2528
3000
|
kind: "Document",
|
|
2529
3001
|
definitions: [
|
|
2530
3002
|
{
|
|
@@ -2532,7 +3004,7 @@ const MetafieldsDocument = {
|
|
|
2532
3004
|
operation: "query",
|
|
2533
3005
|
name: {
|
|
2534
3006
|
kind: "Name",
|
|
2535
|
-
value: "
|
|
3007
|
+
value: "MetaobjectEntries"
|
|
2536
3008
|
},
|
|
2537
3009
|
variableDefinitions: [
|
|
2538
3010
|
{
|
|
@@ -2541,14 +3013,31 @@ const MetafieldsDocument = {
|
|
|
2541
3013
|
kind: "Variable",
|
|
2542
3014
|
name: {
|
|
2543
3015
|
kind: "Name",
|
|
2544
|
-
value: "
|
|
3016
|
+
value: "after"
|
|
2545
3017
|
}
|
|
2546
3018
|
},
|
|
2547
3019
|
type: {
|
|
2548
3020
|
kind: "NamedType",
|
|
2549
3021
|
name: {
|
|
2550
3022
|
kind: "Name",
|
|
2551
|
-
value: "
|
|
3023
|
+
value: "ID"
|
|
3024
|
+
}
|
|
3025
|
+
}
|
|
3026
|
+
},
|
|
3027
|
+
{
|
|
3028
|
+
kind: "VariableDefinition",
|
|
3029
|
+
variable: {
|
|
3030
|
+
kind: "Variable",
|
|
3031
|
+
name: {
|
|
3032
|
+
kind: "Name",
|
|
3033
|
+
value: "before"
|
|
3034
|
+
}
|
|
3035
|
+
},
|
|
3036
|
+
type: {
|
|
3037
|
+
kind: "NamedType",
|
|
3038
|
+
name: {
|
|
3039
|
+
kind: "Name",
|
|
3040
|
+
value: "ID"
|
|
2552
3041
|
}
|
|
2553
3042
|
}
|
|
2554
3043
|
},
|
|
@@ -2568,6 +3057,57 @@ const MetafieldsDocument = {
|
|
|
2568
3057
|
value: "Int"
|
|
2569
3058
|
}
|
|
2570
3059
|
}
|
|
3060
|
+
},
|
|
3061
|
+
{
|
|
3062
|
+
kind: "VariableDefinition",
|
|
3063
|
+
variable: {
|
|
3064
|
+
kind: "Variable",
|
|
3065
|
+
name: {
|
|
3066
|
+
kind: "Name",
|
|
3067
|
+
value: "last"
|
|
3068
|
+
}
|
|
3069
|
+
},
|
|
3070
|
+
type: {
|
|
3071
|
+
kind: "NamedType",
|
|
3072
|
+
name: {
|
|
3073
|
+
kind: "Name",
|
|
3074
|
+
value: "Int"
|
|
3075
|
+
}
|
|
3076
|
+
}
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
kind: "VariableDefinition",
|
|
3080
|
+
variable: {
|
|
3081
|
+
kind: "Variable",
|
|
3082
|
+
name: {
|
|
3083
|
+
kind: "Name",
|
|
3084
|
+
value: "query"
|
|
3085
|
+
}
|
|
3086
|
+
},
|
|
3087
|
+
type: {
|
|
3088
|
+
kind: "NamedType",
|
|
3089
|
+
name: {
|
|
3090
|
+
kind: "Name",
|
|
3091
|
+
value: "String"
|
|
3092
|
+
}
|
|
3093
|
+
}
|
|
3094
|
+
},
|
|
3095
|
+
{
|
|
3096
|
+
kind: "VariableDefinition",
|
|
3097
|
+
variable: {
|
|
3098
|
+
kind: "Variable",
|
|
3099
|
+
name: {
|
|
3100
|
+
kind: "Name",
|
|
3101
|
+
value: "filterKeys"
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
3104
|
+
type: {
|
|
3105
|
+
kind: "NamedType",
|
|
3106
|
+
name: {
|
|
3107
|
+
kind: "Name",
|
|
3108
|
+
value: "MetaobjectEntryFilterKeys"
|
|
3109
|
+
}
|
|
3110
|
+
}
|
|
2571
3111
|
}
|
|
2572
3112
|
],
|
|
2573
3113
|
selectionSet: {
|
|
@@ -2577,20 +3117,34 @@ const MetafieldsDocument = {
|
|
|
2577
3117
|
kind: "Field",
|
|
2578
3118
|
name: {
|
|
2579
3119
|
kind: "Name",
|
|
2580
|
-
value: "
|
|
3120
|
+
value: "metaobjectEntries"
|
|
2581
3121
|
},
|
|
2582
3122
|
arguments: [
|
|
2583
3123
|
{
|
|
2584
3124
|
kind: "Argument",
|
|
2585
3125
|
name: {
|
|
2586
3126
|
kind: "Name",
|
|
2587
|
-
value: "
|
|
3127
|
+
value: "after"
|
|
2588
3128
|
},
|
|
2589
3129
|
value: {
|
|
2590
3130
|
kind: "Variable",
|
|
2591
3131
|
name: {
|
|
2592
3132
|
kind: "Name",
|
|
2593
|
-
value: "
|
|
3133
|
+
value: "after"
|
|
3134
|
+
}
|
|
3135
|
+
}
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
kind: "Argument",
|
|
3139
|
+
name: {
|
|
3140
|
+
kind: "Name",
|
|
3141
|
+
value: "before"
|
|
3142
|
+
},
|
|
3143
|
+
value: {
|
|
3144
|
+
kind: "Variable",
|
|
3145
|
+
name: {
|
|
3146
|
+
kind: "Name",
|
|
3147
|
+
value: "before"
|
|
2594
3148
|
}
|
|
2595
3149
|
}
|
|
2596
3150
|
},
|
|
@@ -2607,11 +3161,93 @@ const MetafieldsDocument = {
|
|
|
2607
3161
|
value: "first"
|
|
2608
3162
|
}
|
|
2609
3163
|
}
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
kind: "Argument",
|
|
3167
|
+
name: {
|
|
3168
|
+
kind: "Name",
|
|
3169
|
+
value: "last"
|
|
3170
|
+
},
|
|
3171
|
+
value: {
|
|
3172
|
+
kind: "Variable",
|
|
3173
|
+
name: {
|
|
3174
|
+
kind: "Name",
|
|
3175
|
+
value: "last"
|
|
3176
|
+
}
|
|
3177
|
+
}
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
kind: "Argument",
|
|
3181
|
+
name: {
|
|
3182
|
+
kind: "Name",
|
|
3183
|
+
value: "query"
|
|
3184
|
+
},
|
|
3185
|
+
value: {
|
|
3186
|
+
kind: "Variable",
|
|
3187
|
+
name: {
|
|
3188
|
+
kind: "Name",
|
|
3189
|
+
value: "query"
|
|
3190
|
+
}
|
|
3191
|
+
}
|
|
3192
|
+
},
|
|
3193
|
+
{
|
|
3194
|
+
kind: "Argument",
|
|
3195
|
+
name: {
|
|
3196
|
+
kind: "Name",
|
|
3197
|
+
value: "filterKeys"
|
|
3198
|
+
},
|
|
3199
|
+
value: {
|
|
3200
|
+
kind: "Variable",
|
|
3201
|
+
name: {
|
|
3202
|
+
kind: "Name",
|
|
3203
|
+
value: "filterKeys"
|
|
3204
|
+
}
|
|
3205
|
+
}
|
|
2610
3206
|
}
|
|
2611
3207
|
],
|
|
2612
3208
|
selectionSet: {
|
|
2613
3209
|
kind: "SelectionSet",
|
|
2614
3210
|
selections: [
|
|
3211
|
+
{
|
|
3212
|
+
kind: "Field",
|
|
3213
|
+
name: {
|
|
3214
|
+
kind: "Name",
|
|
3215
|
+
value: "pageInfo"
|
|
3216
|
+
},
|
|
3217
|
+
selectionSet: {
|
|
3218
|
+
kind: "SelectionSet",
|
|
3219
|
+
selections: [
|
|
3220
|
+
{
|
|
3221
|
+
kind: "Field",
|
|
3222
|
+
name: {
|
|
3223
|
+
kind: "Name",
|
|
3224
|
+
value: "endCursor"
|
|
3225
|
+
}
|
|
3226
|
+
},
|
|
3227
|
+
{
|
|
3228
|
+
kind: "Field",
|
|
3229
|
+
name: {
|
|
3230
|
+
kind: "Name",
|
|
3231
|
+
value: "hasNextPage"
|
|
3232
|
+
}
|
|
3233
|
+
},
|
|
3234
|
+
{
|
|
3235
|
+
kind: "Field",
|
|
3236
|
+
name: {
|
|
3237
|
+
kind: "Name",
|
|
3238
|
+
value: "hasPreviousPage"
|
|
3239
|
+
}
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
kind: "Field",
|
|
3243
|
+
name: {
|
|
3244
|
+
kind: "Name",
|
|
3245
|
+
value: "startCursor"
|
|
3246
|
+
}
|
|
3247
|
+
}
|
|
3248
|
+
]
|
|
3249
|
+
}
|
|
3250
|
+
},
|
|
2615
3251
|
{
|
|
2616
3252
|
kind: "Field",
|
|
2617
3253
|
name: {
|
|
@@ -2641,21 +3277,7 @@ const MetafieldsDocument = {
|
|
|
2641
3277
|
kind: "Field",
|
|
2642
3278
|
name: {
|
|
2643
3279
|
kind: "Name",
|
|
2644
|
-
value: "
|
|
2645
|
-
}
|
|
2646
|
-
},
|
|
2647
|
-
{
|
|
2648
|
-
kind: "Field",
|
|
2649
|
-
name: {
|
|
2650
|
-
kind: "Name",
|
|
2651
|
-
value: "name"
|
|
2652
|
-
}
|
|
2653
|
-
},
|
|
2654
|
-
{
|
|
2655
|
-
kind: "Field",
|
|
2656
|
-
name: {
|
|
2657
|
-
kind: "Name",
|
|
2658
|
-
value: "type"
|
|
3280
|
+
value: "title"
|
|
2659
3281
|
}
|
|
2660
3282
|
}
|
|
2661
3283
|
]
|
|
@@ -3684,4 +4306,4 @@ const VariantsDocument = {
|
|
|
3684
4306
|
}
|
|
3685
4307
|
]
|
|
3686
4308
|
};
|
|
3687
|
-
export { graphql_AccountEmailIntent as AccountEmailIntent, graphql_AccountEmailUpdateActionIntent as AccountEmailUpdateActionIntent, AddMediasDocument, graphql_graphql_AppSortKeys as AppSortKeys, graphql_ArticleCommentPermission as ArticleCommentPermission, graphql_ArticleSortKeys as ArticleSortKeys, graphql_ArticleStatus as ArticleStatus, ArticlesDocument, graphql_BlogSortKeys as BlogSortKeys, BlogsDocument, graphql_CartDiscountScope as CartDiscountScope, graphql_CartDiscountSource as CartDiscountSource, graphql_CartDiscountStatus as CartDiscountStatus, graphql_CartDiscountType as CartDiscountType, graphql_CartLineItemSource as CartLineItemSource, graphql_CartSortkeys as CartSortkeys, graphql_CartStatus as CartStatus, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, CollectionsDocument, graphql_CustomerAddressSortkeys as CustomerAddressSortkeys, graphql_CustomerSegmentCombine as CustomerSegmentCombine, graphql_CustomerSegmentConditionField as CustomerSegmentConditionField, graphql_CustomerSegmentConditionOperator as CustomerSegmentConditionOperator, graphql_CustomerSegmentSortkeys as CustomerSegmentSortkeys, graphql_CustomerSortkeys as CustomerSortkeys, graphql_DefaultThemeTemplateType as DefaultThemeTemplateType, DeleteMediasDocument, graphql_DeliveryProfileSortKeys as DeliveryProfileSortKeys, graphql_DeliveryZoneRateConditionType as DeliveryZoneRateConditionType, graphql_DeliveryZoneSortKeys as DeliveryZoneSortKeys, graphql_DiscountAooMinimumPurchaseType as DiscountAooMinimumPurchaseType, graphql_DiscountAooType as DiscountAooType, graphql_DiscountAopApplication as DiscountAopApplication, graphql_DiscountAopMinimunPurchaseType as DiscountAopMinimunPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimunPurchaseType as DiscountBxgyMinimunPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimunPurchaseType as DiscountFsMinimunPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoicePaymentStatus as StoreInvoicePaymentStatus, graphql_StoreInvoiceRefundStatus as StoreInvoiceRefundStatus, graphql_StoreInvoiceSortKeys as StoreInvoiceSortKeys, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_SupplierSortKeys as SupplierSortKeys, graphql_TaxOverrideLevel as TaxOverrideLevel, graphql_TaxOverrideType as TaxOverrideType, graphql_TaxSortKeys as TaxSortKeys, graphql_graphql_ThemeSortKeys as ThemeSortKeys, graphql_TransferSortKeys as TransferSortKeys, graphql_TransferStatus as TransferStatus, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, VariantsDocument, graphql_WhoamiType as WhoamiType, graphql_AppSortKeys as _AppSortKeys, graphql_CategorySortKeys as _CategorySortKeys, graphql_ContinentSortKeys as _ContinentSortKeys, graphql_CountrySortKeys as _CountrySortKeys, graphql_CurrencySortKeys as _CurrencySortKeys, graphql_HscodeSortKeys as _HscodeSortKeys, graphql_LanguageSortKeys as _LanguageSortKeys, graphql_PackageSortKeys as _PackageSortKeys, graphql_PaymentGatewaySortKeys as _PaymentGatewaySortKeys, graphql_PaymentProviderSortKeys as _PaymentProviderSortKeys, graphql_PhoneSortKeys as _PhoneSortKeys, graphql_RegionSortKeys as _RegionSortKeys, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
|
|
4309
|
+
export { graphql_AccountEmailIntent as AccountEmailIntent, graphql_AccountEmailUpdateActionIntent as AccountEmailUpdateActionIntent, AddMediasDocument, graphql_graphql_AppSortKeys as AppSortKeys, graphql_ArticleCommentPermission as ArticleCommentPermission, graphql_ArticleSortKeys as ArticleSortKeys, graphql_ArticleStatus as ArticleStatus, ArticlesDocument, graphql_BlogSortKeys as BlogSortKeys, BlogsDocument, graphql_CartDiscountScope as CartDiscountScope, graphql_CartDiscountSource as CartDiscountSource, graphql_CartDiscountStatus as CartDiscountStatus, graphql_CartDiscountType as CartDiscountType, graphql_CartLineItemSource as CartLineItemSource, graphql_CartSortkeys as CartSortkeys, graphql_CartStatus as CartStatus, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, CollectionsDocument, graphql_CustomerAddressSortkeys as CustomerAddressSortkeys, graphql_CustomerSegmentCombine as CustomerSegmentCombine, graphql_CustomerSegmentConditionField as CustomerSegmentConditionField, graphql_CustomerSegmentConditionOperator as CustomerSegmentConditionOperator, graphql_CustomerSegmentSortkeys as CustomerSegmentSortkeys, graphql_CustomerSortkeys as CustomerSortkeys, graphql_DefaultThemeTemplateType as DefaultThemeTemplateType, DeleteMediasDocument, graphql_DeliveryProfileSortKeys as DeliveryProfileSortKeys, graphql_DeliveryZoneRateConditionType as DeliveryZoneRateConditionType, graphql_DeliveryZoneSortKeys as DeliveryZoneSortKeys, graphql_DiscountAooMinimumPurchaseType as DiscountAooMinimumPurchaseType, graphql_DiscountAooType as DiscountAooType, graphql_DiscountAopApplication as DiscountAopApplication, graphql_DiscountAopMinimunPurchaseType as DiscountAopMinimunPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimunPurchaseType as DiscountBxgyMinimunPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimunPurchaseType as DiscountFsMinimunPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, LinklistsDocument, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, MetaobjectEntriesDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoicePaymentStatus as StoreInvoicePaymentStatus, graphql_StoreInvoiceRefundStatus as StoreInvoiceRefundStatus, graphql_StoreInvoiceSortKeys as StoreInvoiceSortKeys, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_SupplierSortKeys as SupplierSortKeys, graphql_TaxOverrideLevel as TaxOverrideLevel, graphql_TaxOverrideType as TaxOverrideType, graphql_TaxSortKeys as TaxSortKeys, graphql_graphql_ThemeSortKeys as ThemeSortKeys, graphql_TransferSortKeys as TransferSortKeys, graphql_TransferStatus as TransferStatus, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, VariantsDocument, graphql_WhoamiType as WhoamiType, graphql_AppSortKeys as _AppSortKeys, graphql_CategorySortKeys as _CategorySortKeys, graphql_ContinentSortKeys as _ContinentSortKeys, graphql_CountrySortKeys as _CountrySortKeys, graphql_CurrencySortKeys as _CurrencySortKeys, graphql_HscodeSortKeys as _HscodeSortKeys, graphql_LanguageSortKeys as _LanguageSortKeys, graphql_PackageSortKeys as _PackageSortKeys, graphql_PaymentGatewaySortKeys as _PaymentGatewaySortKeys, graphql_PaymentProviderSortKeys as _PaymentProviderSortKeys, graphql_PhoneSortKeys as _PhoneSortKeys, graphql_RegionSortKeys as _RegionSortKeys, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
|