forked from craftcms/shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigcommerce-gql-schema.graphql
3424 lines (2771 loc) · 73 KB
/
bigcommerce-gql-schema.graphql
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Add wishlist items input object
input AddWishlistItemsInput {
# The wishlist id
entityId: Int!
# The new wishlist items
items: [WishlistItemInput!]!
}
# Add wishlist items
type AddWishlistItemsResult {
# The wishlist
result: Wishlist!
}
# Create wishlist input object
input CreateWishlistInput {
# A wishlist name
name: String!
# A wishlist visibility mode
isPublic: Boolean!
# A wishlist items
items: [WishlistItemInput!]
}
# Create wishlist
type CreateWishlistResult {
# The newly created wishlist
result: Wishlist!
}
# Delete wishlist items input object
input DeleteWishlistItemsInput {
# The wishlist id
entityId: Int!
# The wishlist item ids
itemEntityIds: [Int!]!
}
# Delete wishlist items
type DeleteWishlistItemsResult {
# The wishlist
result: Wishlist!
}
# Delete wishlist
type DeleteWishlistResult {
# The result of the operation
result: String!
}
# Delete wishlists input object
input DeleteWishlistsInput {
# The wishlist ids
entityIds: [Int!]!
}
# Login result
type LoginResult {
# The result of a login
result: String! @deprecated(reason: "Use customer node instead.")
# The currently logged in customer.
customer: Customer
}
# Logout result
type LogoutResult {
# The result of a logout
result: String!
}
type Mutation {
# Customer login
login(
# An email of the customer.
email: String!
# A password of the customer.
password: String!
): LoginResult!
# Customer logout
logout: LogoutResult!
# The wishlist mutations.
wishlist: WishlistMutations!
}
# Update wishlist input object
input UpdateWishlistInput {
# The wishlist id
entityId: Int!
# Wishlist data to update
data: WishlistUpdateDataInput!
}
# Update wishlist
type UpdateWishlistResult {
# The wishlist
result: Wishlist!
}
# Wishlist item input object
input WishlistItemInput {
# An id of the product from the wishlist.
productEntityId: Int!
# An id of the specific product variant from the wishlist.
variantEntityId: Int
}
# The wishlist mutations.
type WishlistMutations {
# Create wishlist
createWishlist(
# Create wishlists input
input: CreateWishlistInput!
): CreateWishlistResult
# Add wishlist items
addWishlistItems(
# Add wishlist items input
input: AddWishlistItemsInput!
): AddWishlistItemsResult
# Delete wishlist items
deleteWishlistItems(
# Delete wishlist items input
input: DeleteWishlistItemsInput!
): DeleteWishlistItemsResult
# Update wishlist
updateWishlist(
# Update wishlist items input
input: UpdateWishlistInput!
): UpdateWishlistResult
# Delete wishlist
deleteWishlists(
# Delete wishlists input
input: DeleteWishlistsInput!
): DeleteWishlistResult
}
# Wishlist data to update
input WishlistUpdateDataInput {
# A new wishlist name
name: String
# A new wishlist visibility mode
isPublic: Boolean
}
# Aggregated
type Aggregated {
# Number of available products in stock. This can be 'null' if inventory is not set orif the store's Inventory Settings disable displaying stock levels on the storefront.
availableToSell: Long!
# Indicates a threshold low-stock level. This can be 'null' if the inventory warning level is not set or if the store's Inventory Settings disable displaying stock levels on the storefront.
warningLevel: Int!
}
# Aggregated Product Inventory
type AggregatedInventory {
# Number of available products in stock. This can be 'null' if inventory is not set orif the store's Inventory Settings disable displaying stock levels on the storefront.
availableToSell: Int!
# Indicates a threshold low-stock level. This can be 'null' if the inventory warning level is not set or if the store's Inventory Settings disable displaying stock levels on the storefront.
warningLevel: Int!
}
# Author
type Author {
# Author name.
name: String!
}
# Brand
type Brand implements Node {
# The ID of an object
id: ID!
# Id of the brand.
entityId: Int!
# Name of the brand.
name: String!
# Default image for brand.
defaultImage: Image
# Page title for the brand.
pageTitle: String! @deprecated(reason: "Use SEO details instead.")
# Meta description for the brand.
metaDesc: String! @deprecated(reason: "Use SEO details instead.")
# Meta keywords for the brand.
metaKeywords: [String!]! @deprecated(reason: "Use SEO details instead.")
# Brand SEO details.
seo: SeoDetails!
# Search keywords for the brand.
searchKeywords: [String!]!
# Path for the brand page.
path: String!
# List of products associated with the brand.
products(
before: String
after: String
first: Int
last: Int
# When set to True, hides products which are out of stock. Defaults to False. This filter will do nothing unless your store has the Product Filtering feature available on your plan and enabled. If it is supplied when your store does not have the feature enabled, it will be silently ignored.
hideOutOfStock: Boolean
): ProductConnection!
# Metafield data related to a brand.
metafields(
# Metafield namespace filter
namespace: String!
# Labels for identifying metafield data values.
keys: [String!] = []
before: String
after: String
first: Int
last: Int
): MetafieldConnection!
}
# A connection to a list of items.
type BrandConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [BrandEdge]
}
# An edge in a connection.
type BrandEdge {
# The item at the end of the edge.
node: Brand!
# A cursor for use in pagination.
cursor: String!
}
# Brand Filter
type BrandSearchFilter implements SearchProductFilter {
# Indicates whether to display product count next to the filter.
displayProductCount: Boolean!
# List of available brands.
brands(
before: String
after: String
first: Int
last: Int
): BrandSearchFilterItemConnection!
# Display name for the filter.
name: String!
# Indicates whether filter is collapsed by default.
isCollapsedByDefault: Boolean!
}
# Specific brand filter item
type BrandSearchFilterItem {
# Brand ID.
entityId: Int!
# Brand name.
name: String!
# Indicates whether brand is selected.
isSelected: Boolean!
# Indicates how many products available for this filter.
productCount: Int!
}
# A connection to a list of items.
type BrandSearchFilterItemConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [BrandSearchFilterItemEdge]
}
# An edge in a connection.
type BrandSearchFilterItemEdge {
# The item at the end of the edge.
node: BrandSearchFilterItem!
# A cursor for use in pagination.
cursor: String!
}
# Breadcrumb
type Breadcrumb {
# Category id.
entityId: Int!
# Name of the category.
name: String!
}
# A connection to a list of items.
type BreadcrumbConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [BreadcrumbEdge]
}
# An edge in a connection.
type BreadcrumbEdge {
# The item at the end of the edge.
node: Breadcrumb!
# A cursor for use in pagination.
cursor: String!
}
# Bulk pricing tier that sets a fixed price for the product or variant.
type BulkPricingFixedPriceDiscount implements BulkPricingTier {
# This price will override the current product price.
price: BigDecimal!
# Minimum item quantity that applies to this bulk pricing tier.
minimumQuantity: Int!
# Maximum item quantity that applies to this bulk pricing tier - if not defined then the tier does not have an upper bound.
maximumQuantity: Int
}
# Bulk pricing tier that reduces the price of the product or variant by a percentage.
type BulkPricingPercentageDiscount implements BulkPricingTier {
# The percentage that will be removed from the product price.
percentOff: BigDecimal!
# Minimum item quantity that applies to this bulk pricing tier.
minimumQuantity: Int!
# Maximum item quantity that applies to this bulk pricing tier - if not defined then the tier does not have an upper bound.
maximumQuantity: Int
}
# Bulk pricing tier that will subtract an amount from the price of the product or variant.
type BulkPricingRelativePriceDiscount implements BulkPricingTier {
# The price of the product/variant will be reduced by this priceAdjustment.
priceAdjustment: BigDecimal!
# Minimum item quantity that applies to this bulk pricing tier.
minimumQuantity: Int!
# Maximum item quantity that applies to this bulk pricing tier - if not defined then the tier does not have an upper bound.
maximumQuantity: Int
}
# A set of bulk pricing tiers that define price discounts which apply when purchasing specified quantities of a product or variant.
interface BulkPricingTier {
# Minimum item quantity that applies to this bulk pricing tier.
minimumQuantity: Int!
# Maximum item quantity that applies to this bulk pricing tier - if not defined then the tier does not have an upper bound.
maximumQuantity: Int
}
# Product Option
interface CatalogProductOption {
# Unique ID for the option.
entityId: Int!
# Display name for the option.
displayName: String!
# One of the option values is required to be selected for the checkout.
isRequired: Boolean!
# Indicates whether it is a variant option or modifier.
isVariantOption: Boolean!
}
# Product Option Value
interface CatalogProductOptionValue {
# Unique ID for the option value.
entityId: Int!
# Label for the option value.
label: String!
# Indicates whether this value is the chosen default selected value.
isDefault: Boolean!
}
# Category
type Category implements Node {
# The ID of an object
id: ID!
# Unique ID for the category.
entityId: Int!
# Category name.
name: String!
# Category path.
path: String!
# Default image for the category.
defaultImage: Image
# Category description.
description: String!
# Category breadcrumbs.
breadcrumbs(
# The depth of the breadcrumbs.
depth: Int!
before: String
after: String
first: Int
last: Int
): BreadcrumbConnection!
# List of products associated with category
products(
before: String
after: String
first: Int
last: Int
# When set to True, hides products which are out of stock. Defaults to False. This filter will do nothing unless your store has the Product Filtering feature available on your plan and enabled. If it is supplied when your store does not have the feature enabled, it will be silently ignored.
hideOutOfStock: Boolean
# Product sorting by categories.
sortBy: CategoryProductSort
): ProductConnection!
# Metafield data related to a category.
metafields(
# Metafield namespace filter
namespace: String!
# Labels for identifying metafield data values.
keys: [String!] = []
before: String
after: String
first: Int
last: Int
): MetafieldConnection!
# Category SEO details.
seo: SeoDetails!
# Category shop by price money ranges.
shopByPriceRanges(
# Please select a currency
currencyCode: currencyCode
# Tax will be included if enabled
includeTax: Boolean = false
before: String
after: String
first: Int
last: Int
): ShopByPriceConnection!
@deprecated(reason: "Alpha version. Do not use in production.")
# Category default product sort.
defaultProductSort: CategoryProductSort
}
# A connection to a list of items.
type CategoryConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [CategoryEdge]
}
# An edge in a connection.
type CategoryEdge {
# The item at the end of the edge.
node: Category!
# A cursor for use in pagination.
cursor: String!
}
# Product sorting by categories.
enum CategoryProductSort {
A_TO_Z
BEST_REVIEWED
BEST_SELLING
DEFAULT
FEATURED
HIGHEST_PRICE
LOWEST_PRICE
NEWEST
Z_TO_A
}
# Category Filter
type CategorySearchFilter implements SearchProductFilter {
# Indicates whether to display product count next to the filter.
displayProductCount: Boolean!
# List of available categories.
categories(
before: String
after: String
first: Int
last: Int
): CategorySearchFilterItemConnection!
# Display name for the filter.
name: String!
# Indicates whether filter is collapsed by default.
isCollapsedByDefault: Boolean!
}
# Specific category filter item
type CategorySearchFilterItem {
# Category ID.
entityId: Int!
# Category name.
name: String!
# Indicates whether category is selected.
isSelected: Boolean!
# Indicates how many products available for this filter.
productCount: Int!
# List of available sub-categories.
subCategories(
before: String
after: String
first: Int
last: Int
): SubCategorySearchFilterItemConnection!
}
# A connection to a list of items.
type CategorySearchFilterItemConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [CategorySearchFilterItemEdge]
}
# An edge in a connection.
type CategorySearchFilterItemEdge {
# The item at the end of the edge.
node: CategorySearchFilterItem!
# A cursor for use in pagination.
cursor: String!
}
# An item in a tree of categories.
type CategoryTreeItem {
# The id category.
entityId: Int!
# The name of category.
name: String!
# Path assigned to this category
path: String!
# The description of this category.
description: String!
# The number of products in this category.
productCount: Int!
# The category image.
image: Image
# If a category has children.
hasChildren: Boolean!
# Subcategories of this category
children: [CategoryTreeItem!]!
}
# The Channel
type Channel {
# The ID of the channel.
entityId: Long!
# Metafield data related to a channel.
metafields(
# Metafield namespace filter
namespace: String!
# Labels for identifying metafield data values.
keys: [String!] = []
before: String
after: String
first: Int
last: Int
): MetafieldConnection!
}
# A simple yes/no question represented by a checkbox.
type CheckboxOption implements CatalogProductOption {
# Indicates the default checked status.
checkedByDefault: Boolean!
# Label of the checkbox option.
label: String!
# Unique ID for the option.
entityId: Int!
# Display name for the option.
displayName: String!
# One of the option values is required to be selected for the checkout.
isRequired: Boolean!
# Indicates whether it is a variant option or modifier.
isVariantOption: Boolean!
}
# Additional information about the collection.
type CollectionInfo {
# Total items in the collection despite pagination.
totalItems: Long
}
# Contact field
type ContactField {
# Store address line.
address: String!
# Store country.
country: String!
# Store address type.
addressType: String!
# Store email.
email: String!
# Store phone number.
phone: String!
}
# The page content.
type Content {
# The rendered regions by specific page.
renderedRegionsByPageType(
# Rendered regions filter by page type.
pageType: PageType!
): RenderedRegionsByPageType!
# The rendered regions by specific page and id.
renderedRegionsByPageTypeAndEntityId(
# Rendered regions filter by id.
entityId: Long!
# Rendered regions filter by page type and id.
entityPageType: EntityPageType!
): RenderedRegionsByPageType!
}
# Currency details.
type Currency {
# Currency ID.
entityId: Int!
# Currency code.
code: currencyCode!
# Currency name.
name: String!
# Flag image URL.
flagImage: String
# Indicates whether this currency is active.
isActive: Boolean!
# Exchange rate relative to default currency.
exchangeRate: Float!
# Indicates whether this currency is transactional.
isTransactional: Boolean!
# Currency display settings.
display: CurrencyDisplay!
}
# A connection to a list of items.
type CurrencyConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [CurrencyEdge]
}
# Currency display settings.
type CurrencyDisplay {
# Currency symbol.
symbol: String!
# Currency symbol.
symbolPlacement: CurrencySymbolPosition!
# Currency decimal token.
decimalToken: String!
# Currency thousands token.
thousandsToken: String!
# Currency decimal places.
decimalPlaces: Int!
}
# An edge in a connection.
type CurrencyEdge {
# The item at the end of the edge.
node: Currency!
# A cursor for use in pagination.
cursor: String!
}
# Currency symbol position
enum CurrencySymbolPosition {
LEFT
RIGHT
}
# Custom field
type CustomField {
# Custom field id.
entityId: Int!
# Name of the custom field.
name: String!
# Value of the custom field.
value: String!
}
# A connection to a list of items.
type CustomFieldConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [CustomFieldEdge]
}
# An edge in a connection.
type CustomFieldEdge {
# The item at the end of the edge.
node: CustomField!
# A cursor for use in pagination.
cursor: String!
}
# A customer that shops on a store
type Customer {
# The ID of the customer.
entityId: Int!
# The company name of the customer.
company: String!
# The customer group id of the customer.
customerGroupId: Int!
# The email address of the customer.
email: String!
# The first name of the customer.
firstName: String!
# The last name of the customer.
lastName: String!
# The notes of the customer.
notes: String!
# The phone number of the customer.
phone: String!
# The tax exempt category of the customer.
taxExemptCategory: String!
# Customer addresses count.
addressCount: Int!
# Customer attributes count.
attributeCount: Int!
# Customer store credit.
storeCredit: [Money!]!
# Customer attributes.
attributes: CustomerAttributes!
# Customer wishlists.
wishlists(
# Wishlist filters input
filters: WishlistFiltersInput
before: String
after: String
first: Int
last: Int
): WishlistConnection!
}
# A custom, store-specific attribute for a customer
type CustomerAttribute {
# The ID of the custom customer attribute
entityId: Int!
# The value of the custom customer attribute
value: String
# The name of the custom customer attribute
name: String!
}
# Custom, store-specific customer attributes
type CustomerAttributes {
# A custom, store-specific attribute for a customer
attribute(
# The ID of the customer attribute
entityId: Int!
): CustomerAttribute!
}
# A calendar for allowing selection of a date.
type DateFieldOption implements CatalogProductOption {
# The default timestamp of date option.
defaultValue: DateTime
# The earliest timestamp of date option.
earliest: DateTime
# The latest timestamp of date option.
latest: DateTime
# Limit date by
limitDateBy: LimitDateOption!
# Unique ID for the option.
entityId: Int!
# Display name for the option.
displayName: String!
# One of the option values is required to be selected for the checkout.
isRequired: Boolean!
# Indicates whether it is a variant option or modifier.
isVariantOption: Boolean!
}
# ISO-8601 formatted date in UTC
scalar DateTime
# Date Time Extended
type DateTimeExtended {
# ISO-8601 formatted date in UTC
utc: DateTime!
}
# Display field
type DisplayField {
# Short date format.
shortDateFormat: String!
# Extended date format.
extendedDateFormat: String!
}
# Distance
type Distance {
# Distance in specified length unit
value: Float!
# Length unit
lengthUnit: LengthUnit!
}
# Filter locations by the distance
input DistanceFilter {
# Radius of search in length units specified in lengthUnit argument
radius: Float!
# Signed decimal degrees without compass direction
longitude: Float!
# Signed decimal degrees without compass direction
latitude: Float!
# Length unit
lengthUnit: LengthUnit!
}
# Entity page type
enum EntityPageType {
BLOG_POST
BRAND
CATEGORY
CONTACT_US
PAGE
PRODUCT
}
# A form allowing selection and uploading of a file from the user's local computer.
type FileUploadFieldOption implements CatalogProductOption {
# The maximum size of the file in kilobytes
maxFileSize: Int!
# All possible file extensions. Empty means that all files allowed.
fileTypes: [String!]!
# Unique ID for the option.
entityId: Int!
# Display name for the option.
displayName: String!
# One of the option values is required to be selected for the checkout.
isRequired: Boolean!
# Indicates whether it is a variant option or modifier.
isVariantOption: Boolean!
}
# Gift wrapping for product
type GiftWrapping {
# Gift wrapping id.
entityId: Int!
# Gift wrapping name.
name: String!
# Indicates whether commenting is allowed for the gift wrapping.
allowComments: Boolean!
# Gift wrapping preview image url.
previewImageUrl: String
}
# A connection to a list of items.
type GiftWrappingConnection {
# Information to aid in pagination.
pageInfo: PageInfo!
# A list of edges.
edges: [GiftWrappingEdge]
}
# An edge in a connection.
type GiftWrappingEdge {
# The item at the end of the edge.
node: GiftWrapping!
# A cursor for use in pagination.
cursor: String!
}
# Image
type Image {
# Absolute path to image using store CDN.
url(
# Desired width of the image.
width: Int!