forked from GatsbyStorefront/gatsby-theme-storefront-shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
typedefs.js
332 lines (324 loc) · 9.21 KB
/
typedefs.js
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
const typeDefs = `
type SiteSiteMetadataGatsbyStorefrontConfig {
storeName: String
storeDescription: String
email: String
company: String
location: String
address: String
phone: String
workingDays: String
workingHours: String
socialNetworks: [String]
payments: [String]
shareButtons: [String]
googleAnalyticsId: String
isShopifyLite: Boolean
mainPage: [SiteSiteMetadataGatsbyStorefrontConfigMainPage]
menu: [SiteSiteMetadataGatsbyStorefrontConfigMenu]
footerLinks: [SiteSiteMetadataGatsbyStorefrontConfigFooterLinks]
locales: String
currency: String
productsPerCollectionPage: String
articlesPerBlogPage: String
}
type SiteSiteMetadataGatsbyStorefrontConfigMainPage {
type: String
children: [SiteSiteMetadataGatsbyStorefrontConfigMainPageChildren]
name: String
handle: String
textColor: String
textBgColor: String
}
type SiteSiteMetadataGatsbyStorefrontConfigMainPageChildren {
name: String
type: String
handle: String
textColor: String
textBgColor: String
}
type SiteSiteMetadataGatsbyStorefrontConfigMenu {
name: String
handle: String
type: String
link: String
parentId: Int
id: Int
}
type SiteSiteMetadataGatsbyStorefrontConfigFooterLinks {
name: String
link: String
}
type ShopifyProductFieldsFirstImage {
id: String
altText: String
originalSrc: String
localFile: File
}
type Query {
allShopifyCollection(filter: ShopifyCollectionFilterInput, sort: ShopifyCollectionSortInput, skip: Int, limit: Int): ShopifyCollectionConnection!
allShopifyShopPolicy(filter: ShopifyShopPolicyFilterInput, sort: ShopifyShopPolicySortInput, skip: Int, limit: Int): ShopifyShopPolicyConnection!
allShopifyArticle(filter: ShopifyArticleFilterInput, sort: ShopifyArticleSortInput, skip: Int, limit: Int): ShopifyArticleConnection!
allShopifyBlog(filter: ShopifyBlogFilterInput, sort: ShopifyBlogSortInput, skip: Int, limit: Int): ShopifyBlogConnection!
}
type ShopifyCollectionConnection {
nodes: [ShopifyCollection!]!
distinct(field: ShopifyCollectionFieldsEnum!): [String!]!
group(skip: Int, limit: Int, field: ShopifyCollectionFieldsEnum!): [ShopifyCollectionGroupConnection!]!
}
type ShopifyCollectionGroupConnection {
totalCount: Int!
edges: [ShopifyCollectionEdge!]!
nodes: [ShopifyCollection!]!
pageInfo: PageInfo!
field: String!
fieldValue: String
}
type ShopifyCollectionEdge {
next: ShopifyCollection
node: ShopifyCollection!
previous: ShopifyCollection
}
type ShopifyCollection implements Node {
id: ID!
parent: Node
children: [Node!]!
internal: Internal!
description: String
descriptionHtml: String
handle: String
image: ShopifyCollectionImage
title: String
updatedAt(formatString: String, fromNow: Boolean, difference: String, locale: String): Date
shopifyId: String
products: [ShopifyProduct]
fields: ShopifyCollectionFields
}
type ShopifyCollectionFields {
shopifyThemePath: String
}
type ShopifyCollectionImage {
id: String
src: String
localFile: File
}
type ShopifyProduct implements Node {
id: ID!
internal: Internal!
availableForSale: Boolean
createdAt(formatString: String, fromNow: Boolean, difference: String, locale: String): Date
description: String
descriptionHtml: String
handle: String
images: [ShopifyProductImages]
onlineStoreUrl: String
priceRange: ShopifyProductPriceRange
productType: String
tags: [String]
title: String
vendor: String
shopifyId: String
variants: [ShopifyProductVariant]
options: [ShopifyProductOption]
fields: ShopifyProductFields
}
type ShopifyProductFields {
shopifyThemePath: String
firstImage: ShopifyProductFieldsFirstImage
}
type ShopifyProductImages {
id: String
altText: String
originalSrc: String
localFile: File
}
type ShopifyProductPriceRange {
minVariantPrice: ShopifyProductPriceRangeMinVariantPrice
maxVariantPrice: ShopifyProductPriceRangeMaxVariantPrice
}
type ShopifyProductPriceRangeMinVariantPrice {
amount: String
currencyCode: String
}
type ShopifyProductPriceRangeMaxVariantPrice {
amount: String
currencyCode: String
}
type ShopifyProductVariant implements Node {
id: ID!
parent: Node
children: [Node!]!
internal: Internal!
availableForSale: Boolean
compareAtPrice: String
compareAtPriceV2: ShopifyProductVariantCompareAtPriceV2
image: ShopifyProductVariantImage
price: String
priceV2: ShopifyProductVariantPriceV2
requiresShipping: Boolean
selectedOptions: [ShopifyProductVariantSelectedOptions]
sku: String
title: String
weight: Float
weightUnit: String
shopifyId: String
}
type ShopifyProductVariantCompareAtPriceV2 {
amount: String
currencyCode: String
}
type ShopifyProductVariantPriceV2 {
amount: String
currencyCode: String
}
type ShopifyProductVariantSelectedOptions {
name: String
value: String
}
type ShopifyProductVariantImage {
altText: String
id: String
originalSrc: String
localFile: File
}
type ShopifyProductOption implements Node {
id: ID!
parent: Node
children: [Node!]!
internal: Internal!
name: String
values: [String]
shopifyId: String
}
type ShopifyShopPolicyConnection {
nodes: [ShopifyShopPolicy!]!
distinct(field: ShopifyShopPolicyFieldsEnum!): [String!]!
group(skip: Int, limit: Int, field: ShopifyShopPolicyFieldsEnum!): [ShopifyShopPolicyGroupConnection!]!
}
type ShopifyShopPolicyGroupConnection {
totalCount: Int!
edges: [ShopifyShopPolicyEdge!]!
nodes: [ShopifyShopPolicy!]!
pageInfo: PageInfo!
field: String!
fieldValue: String
}
type ShopifyShopPolicyEdge {
next: ShopifyShopPolicy
node: ShopifyShopPolicy!
previous: ShopifyShopPolicy
}
type ShopifyShopPolicy implements Node {
id: ID!
parent: Node
children: [Node!]!
internal: Internal!
body: String
title: String
url: String
shopifyId: String
type: String
fields: ShopifyShopPolicyFields
}
type ShopifyShopPolicyFields {
shopifyThemePath: String
}
type ShopifyArticleConnection {
nodes: [ShopifyArticle!]!
distinct(field: ShopifyArticleFieldsEnum!): [String!]!
group(skip: Int, limit: Int, field: ShopifyArticleFieldsEnum!): [ShopifyArticleGroupConnection!]!
}
type ShopifyArticleGroupConnection {
totalCount: Int!
edges: [ShopifyArticleEdge!]!
nodes: [ShopifyArticle!]!
pageInfo: PageInfo!
field: String!
fieldValue: String
}
type ShopifyArticleEdge {
next: ShopifyArticle
node: ShopifyArticle!
previous: ShopifyArticle
}
type ShopifyArticle implements Node {
id: ID!
internal: Internal!
author: ShopifyArticleAuthor
blog: ShopifyBlog
publishedAt(formatString: String, fromNow: Boolean, difference: String, locale: String): Date
content: String
contentHtml: String
excerpt: String
excerptHtml: String
title: String
url: String
shopifyId: String
fields: ShopifyArticleFields
}
type ShopifyArticleAuthor {
email: String
firstName: String
lastName: String
name: String
}
type ShopifyArticleFields {
shopifyThemePath: String
}
type ShopifyBlogConnection {
nodes: [ShopifyBlog!]!
distinct(field: ShopifyBlogFieldsEnum!): [String!]!
group(skip: Int, limit: Int, field: ShopifyBlogFieldsEnum!): [ShopifyBlogGroupConnection!]!
}
type ShopifyBlogGroupConnection {
totalCount: Int!
edges: [ShopifyBlogEdge!]!
nodes: [ShopifyBlog!]!
pageInfo: PageInfo!
field: String!
fieldValue: String
}
type ShopifyBlogEdge {
next: ShopifyBlog
node: ShopifyBlog!
previous: ShopifyBlog
}
type ShopifyBlog implements Node {
id: ID!
parent: Node
children: [Node!]!
internal: Internal!
title: String
url: String
shopifyId: String
fields: ShopifyBlogFields
}
type ShopifyBlogFields {
shopifyThemePath: String
}
type SiteSearchIndex implements Node {
id: ID!
parent: Node
children: [Node!]!
internal: Internal!
pages: [String]
index: SiteSearchIndex_Index
}
type ShopifyPage implements Node {
id: ID!
parent: Node
children: [Node!]!
internal: Internal!
handle: String
title: String
body: String
bodySummary: String
url: String
shopifyId: String
fields: ShopifyPageFields
}
type ShopifyPageFields {
shopifyThemePath: String
}
`;
module.exports = typeDefs;