OBJECT

Query

The main queries are here, click to expand

link GraphQL Schema definition

1type Query {
2# Get single account data.
3#
4# Required permission: Account:read
5#
6# Store restrictions apply.
7#
8# Arguments
9# id: (self-explanatory)
10# externalId: (self-explanatory)
11account(id: Int, externalId: String): Account
12
13# Get collection of accounts.
14#
15# Required permission: Account:read
16#
17# Limit must be in range 1 - 200
18#
19# Store restrictions apply.
20#
21# Arguments
22# where: (self-explanatory)
23# sort: (self-explanatory)
24# limit: (self-explanatory)
25# page: (self-explanatory)
26accounts(where: AccountFilter, sort: [AccountSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Account!]!
27
28# Get accounts connection
29#
30# Required permission: Account:read
31#
32# Limit must be in range 1 - 200
33#
34# Store restrictions apply.
35#
36# Arguments
37# where: (self-explanatory)
38# sort: (self-explanatory)
39# first: (self-explanatory)
40# after: (self-explanatory)
41# last: (self-explanatory)
42# before: (self-explanatory)
43accountConnection(where: AccountFilter, sort: [AccountSort!] = [id_ASC], first: Int, after: String, last: Int, before: String): AccountConnection!
44
45# Get single admin user
46#
47# Required permission: AdminUser:read
48#
49# Arguments
50# id: (self-explanatory)
51adminUser(id: Int): AdminUser
52
53# Get collection of admin users
54#
55# Required permission: AdminUser:read
56#
57# Limit must be in range 1 - 200
58#
59# Arguments
60# where: (self-explanatory)
61# sort: (self-explanatory)
62# limit: (self-explanatory)
63# page: (self-explanatory)
64adminUsers(where: AdminUserFilter, sort: [AdminUserSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [AdminUser!]!
65
66# Get single affiliate data
67#
68# Required permission: Affiliate:read
69#
70# Store restrictions apply.
71#
72# Arguments
73# id: (self-explanatory)
74affiliate(id: Int!): Affiliate
75
76# Get collection of affiliates
77#
78# Required permission: Affiliate:read
79#
80# Limit must be in range 1 - 200
81#
82# Store restrictions apply.
83#
84# Arguments
85# where: (self-explanatory)
86# sort: (self-explanatory)
87# limit: (self-explanatory)
88# page: (self-explanatory)
89affiliates(where: AffiliateFilter, sort: [AffiliateSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Affiliate!]!
90
91# Get collection of allocation rules
92#
93# Required permission: AllocationRule:read
94#
95# Limit must be in range 1 - 200
96#
97# Arguments
98# where: (self-explanatory)
99# sort: (self-explanatory)
100# limit: (self-explanatory)
101# page: (self-explanatory)
102allocationRules(where: AllocationRuleFilter = {isActive: true}, sort: [AllocationRuleSort!] = [id_ASC], limit: Int = 20, page: Int): [AllocationRule!]!
103
104# Get all defined attribute types
105#
106# Required permission: Attribute:read
107#
108# All elements are always returned
109#
110# Arguments
111# where: (self-explanatory)
112attributeTypes(where: AttributeTypeFilter): [AttributeType!]!
113
114# Get single brand data
115#
116# Required permission: Brand:read
117#
118# Store restrictions apply.
119#
120# Arguments
121# id: (self-explanatory)
122# externalId: (self-explanatory)
123brand(id: Int, externalId: String): Brand
124
125# Get collection of brands
126#
127# Required permission: Brand:read
128#
129# Limit must be in range 1 - 200
130#
131# Store restrictions apply.
132#
133# Arguments
134# where: (self-explanatory)
135# sort: (self-explanatory)
136# limit: (self-explanatory)
137# page: (self-explanatory)
138brands(where: BrandFilter, sort: [BrandSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Brand!]!
139
140# Get collection of brick and mortars
141#
142# Required permission: BrickAndMortar:read
143#
144# Limit must be in range 1 - 200
145#
146# Arguments
147# where: (self-explanatory)
148# sort: (self-explanatory)
149# limit: (self-explanatory)
150# page: (self-explanatory)
151brickAndMortars(where: BrickAndMortarFilter, sort: [BrickAndMortarSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [BrickAndMortar!]!
152
153# Get single bundle data
154#
155# Required permission: Bundle:read
156#
157# Arguments
158# id: (self-explanatory)
159bundle(id: Int!): Bundle
160
161# Get collection of bundles
162#
163# Required permission: Bundle:read
164#
165# Limit must be in range 1 - 200
166#
167# Arguments
168# where: (self-explanatory)
169# sort: (self-explanatory)
170# limit: (self-explanatory)
171# page: (self-explanatory)
172bundles(where: BundleFilter, sort: [BundleSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Bundle!]!
173
174# Get collection of bundles in the Relay connection form
175#
176# Required permission: Bundle:read
177#
178# Limit must be in range 1 - 200
179#
180# Arguments
181# where: (self-explanatory)
182# sort: (self-explanatory)
183# first: (self-explanatory)
184# after: (self-explanatory)
185# last: (self-explanatory)
186# before: (self-explanatory)
187bundleConnection(where: BundleFilter, sort: [BundleSort!] = [id_ASC], first: Int, after: String, last: Int, before: String): BundleConnection!
188
189# Required permission: TaxRule:read
190#
191# Requires field selected: userErrors
192#
193# Arguments
194# input: (self-explanatory)
195calculateTaxes(input: OrderTaxesInput!): OrderTaxesPayload!
196
197# Get campaigns
198#
199# Required permission: Campaign:read
200#
201# Limit must be in range 1 - 200
202#
203# Store restrictions apply.
204#
205# Arguments
206# where: (self-explanatory)
207# sort: (self-explanatory)
208# limit: (self-explanatory)
209# page: (self-explanatory)
210campaigns(where: CampaignFilter, sort: [CampaignSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [Campaign!]!
211
212# Get collection of campaigns in the Relay connection form
213#
214# Required permission: Campaign:read
215#
216# Limit must be in range 1 - 200
217#
218# Store restrictions apply.
219#
220# Arguments
221# where: (self-explanatory)
222# sort: (self-explanatory)
223# first: (self-explanatory)
224# after: (self-explanatory)
225# last: (self-explanatory)
226# before: (self-explanatory)
227campaignConnection(
228where: CampaignFilter,
229sort: [CampaignSort!] = [id_DESC],
230first: Int,
231after: String,
232last: Int,
233before: String
234): CampaignConnection!
235
236# Required permission: Category:read
237#
238# Store restrictions apply.
239#
240# Arguments
241# id: (self-explanatory)
242category(id: Int!): Category
243
244# Get categories
245#
246# Required permission: Category:read
247#
248# Limit must be in range 1 - 200
249#
250# Store restrictions apply.
251#
252# Arguments
253# where: (self-explanatory)
254# sort: (self-explanatory)
255# limit: (self-explanatory)
256# page: (self-explanatory)
257categories(where: CategoryFilter, sort: [CategorySort!] = [customOrder_ASC], limit: Int = 20, page: Int = 1): [Category!]!
258
259# Get single collection data
260#
261# Required permission: Collection:read
262#
263# Arguments
264# id: (self-explanatory)
265# externalId: (self-explanatory)
266collection(id: Int, externalId: String): Collection
267
268# Get list of collections by any criteria
269#
270# Required permission: Collection:read
271#
272# Limit must be in range 1 - 200
273#
274# Arguments
275# where: (self-explanatory)
276# sort: (self-explanatory)
277# limit: (self-explanatory)
278# page: (self-explanatory)
279collections(where: CollectionFilter, sort: [CollectionSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Collection!]!
280
281# Get list of collections in the Relay connection form
282#
283# Required permission: Collection:read
284#
285# Limit must be in range 1 - 200
286#
287# Arguments
288# where: (self-explanatory)
289# sort: (self-explanatory)
290# first: (self-explanatory)
291# after: (self-explanatory)
292# last: (self-explanatory)
293# before: (self-explanatory)
294collectionConnection(
295where: CollectionFilter,
296sort: [CollectionSort!] = [id_ASC],
297first: Int,
298after: String,
299last: Int,
300before: String
301): CollectionConnection!
302
303# Get continents to group countries
304#
305# Required permission: Country:read
306#
307# Limit is optional
308#
309# Arguments
310# where: (self-explanatory)
311# sort: (self-explanatory)
312# limit: (self-explanatory)
313# page: (self-explanatory)
314continents(where: ContinentFilter, sort: [ContinentSort!] = [name_ASC], limit: Int, page: Int): [Continent!]!
315
316# Get collection of countries by any criteria
317#
318# Required permission: Country:read
319#
320# Limit is optional
321#
322# Arguments
323# where: (self-explanatory)
324# sort: (self-explanatory)
325# limit: (self-explanatory)
326# page: (self-explanatory)
327countries(where: CountryFilter, sort: [CountrySort!] = [name_ASC], limit: Int, page: Int): [Country!]!
328
329# Get single currency data
330#
331# Required permission: Currency:read
332#
333# Arguments
334# id: (self-explanatory)
335# externalId: (self-explanatory)
336currency(id: Int, externalId: String): Currency
337
338# Get collection of currencies by any criteria
339#
340# Required permission: Currency:read
341#
342# Limit is optional
343#
344# Arguments
345# where: (self-explanatory)
346# sort: (self-explanatory)
347# limit: (self-explanatory)
348# page: (self-explanatory)
349currencies(where: CurrencyFilter, sort: [CurrencySort!] = [id_ASC], limit: Int, page: Int): [Currency!]!
350
351# Get single customer data
352#
353# Required permission: Customer:read
354#
355# Store restrictions apply.
356#
357# Arguments
358# id: (self-explanatory)
359# externalId: (self-explanatory)
360customer(id: Int, externalId: String): Customer
361
362# Get collection of customers by any criteria
363#
364# Required permission: Customer:read
365#
366# Limit must be in range 1 - 200
367#
368# Store restrictions apply.
369#
370# Arguments
371# where: (self-explanatory)
372# sort: (self-explanatory)
373# limit: (self-explanatory)
374# page: (self-explanatory)
375customers(where: CustomerFilter, sort: [CustomerSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Customer!]!
376
377# Get collection of customers in the Relay connection form
378#
379# Required permission: Customer:read
380#
381# Limit must be in range 1 - 200
382#
383# Store restrictions apply.
384#
385# Arguments
386# where: (self-explanatory)
387# sort: (self-explanatory)
388# first: (self-explanatory)
389# after: (self-explanatory)
390# last: (self-explanatory)
391# before: (self-explanatory)
392customerConnection(
393where: CustomerFilter,
394sort: [CustomerSort!] = [id_ASC],
395first: Int,
396after: String,
397last: Int,
398before: String
399): CustomerConnection!
400
401# Get single delivery window data
402#
403# Required permission: DeliveryWindow:read
404#
405# Store restrictions apply.
406#
407# Arguments
408# id: (self-explanatory)
409# externalId: (self-explanatory)
410deliveryWindow(id: Int, externalId: String): DeliveryWindow
411
412# Get delivery windows by any criteria
413#
414# Required permission: DeliveryWindow:read
415#
416# Limit must be in range 1 - 200
417#
418# Store restrictions apply.
419#
420# Arguments
421# where: (self-explanatory)
422# sort: (self-explanatory)
423# limit: (self-explanatory)
424# page: (self-explanatory)
425deliveryWindows(where: DeliveryWindowFilter, sort: [DeliveryWindowSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [DeliveryWindow!]!
426
427# Get single delivery window group data
428#
429# Required permission: DeliveryWindow:read
430#
431# Arguments
432# id: (self-explanatory)
433# externalId: (self-explanatory)
434deliveryWindowGroup(id: Int, externalId: String): DeliveryWindowGroup
435
436# Get collection of delivery window groups
437#
438# Required permission: DeliveryWindow:read
439#
440# Limit must be in range 1 - 200
441#
442# Arguments
443# limit: (self-explanatory)
444# page: (self-explanatory)
445deliveryWindowGroups(limit: Int = 20, page: Int = 1): [DeliveryWindowGroup!]!
446
447# Get sorted delivery windows and delivery window groups
448#
449# Required permission: DeliveryWindow:read
450#
451# All elements are always returned
452#
453# Arguments
454# where: (self-explanatory)
455deliveryWindowsTree(where: DeliveryWindowTreeFilter): [DeliveryWindowTreeItem!]!
456
457# Get single voucher data
458#
459# Required permission: Voucher:read
460#
461# Store restrictions apply.
462#
463# Arguments
464# id: (self-explanatory)
465# externalId: (self-explanatory)
466voucher(id: Int, externalId: String): Voucher
467
468# Get collection of vouchers
469#
470# Required permission: Voucher:read
471#
472# Limit must be in range 1 - 200
473#
474# Store restrictions apply.
475#
476# Arguments
477# where: (self-explanatory)
478# sort: (self-explanatory)
479# limit: (self-explanatory)
480# page: (self-explanatory)
481vouchers(where: VoucherFilter, sort: [VoucherSort!] = [priority_ASC, id_ASC], limit: Int = 20, page: Int = 1): [Voucher!]!
482
483# Get single display data
484#
485# Required permission: Display:read
486#
487# Store restrictions apply.
488#
489# Arguments
490# id: (self-explanatory)
491display(id: Int!): Display
492
493# Get collection of displays by any criteria
494#
495# Required permission: Display:read
496#
497# Limit must be in range 1 - 200
498#
499# Store restrictions apply.
500#
501# Arguments
502# where: (self-explanatory)
503# sort: (self-explanatory)
504# limit: (self-explanatory)
505# page: (self-explanatory)
506displays(where: DisplayFilter, sort: [DisplaySort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Display!]!
507
508# Get collection of display items by any criteria
509#
510# Required permission: Display:read
511#
512# Limit must be in range 1 - 200
513#
514# Store restrictions apply.
515#
516# Arguments
517# where: (self-explanatory)
518# sort: (self-explanatory)
519# limit: (self-explanatory)
520# page: (self-explanatory)
521displayItems(where: DisplayItemFilter, sort: [DisplayItemSort!] = [customOrder_ASC], limit: Int = 20, page: Int = 1): [DisplayItem!]!
522
523# Get collection of displays in the Relay connection form
524#
525# Required permission: Display:read
526#
527# Limit must be in range 1 - 200
528#
529# Store restrictions apply.
530#
531# Arguments
532# where: (self-explanatory)
533# sort: (self-explanatory)
534# first: (self-explanatory)
535# after: (self-explanatory)
536# last: (self-explanatory)
537# before: (self-explanatory)
538displayConnection(where: DisplayFilter, sort: [DisplaySort!] = [id_ASC], first: Int, after: String, last: Int, before: String): DisplayConnection!
539
540# Get a list of document templates
541#
542# Required permission: DocumentTemplate:read
543#
544# Limit must be in range 1 - 200
545#
546# Store restrictions apply.
547#
548# Arguments
549# where: (self-explanatory)
550# sort: (self-explanatory)
551# limit: (self-explanatory)
552# page: (self-explanatory)
553documentTemplates(where: DocumentTemplateFilter, sort: [DocumentTemplateSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [DocumentTemplate!]!
554
555# Required permission: Folder:read
556#
557# Arguments
558# id: (self-explanatory)
559# externalId: (self-explanatory)
560folder(id: Int, externalId: String): Folder
561
562# Get folders
563#
564# Required permission: Folder:read
565#
566# Limit must be in range 1 - 200
567#
568# Arguments
569# where: (self-explanatory)
570# sort: (self-explanatory)
571# limit: (self-explanatory)
572# page: (self-explanatory)
573folders(where: FolderFilter, sort: [FolderSort!] = [customOrder_ASC], limit: Int = 20, page: Int = 1): [Folder!]!
574
575# Get Gift Certificate Generators
576#
577# Required permission: GiftCertificateGenerator:read
578#
579# Limit must be in range 1 - 200
580#
581# Store restrictions apply.
582#
583# Arguments
584# where: (self-explanatory)
585# sort: (self-explanatory)
586# limit: (self-explanatory)
587# page: (self-explanatory)
588giftCertificateGenerators(
589where: GiftCertificateGeneratorFilter,
590sort: [GiftCertificateGeneratorSort!] = [id_ASC],
591limit: Int = 20,
592page: Int = 1
593): [GiftCertificateGenerator!]!
594
595# Get all ID conversion table entries
596#
597# Required permission: IdConversion:read
598#
599# Limit must be in range 1 - 200
600#
601# Arguments
602# where: (self-explanatory)
603# sort: (self-explanatory)
604# limit: (self-explanatory)
605# page: (self-explanatory)
606idConversions(where: IdConversionEntryFilter, sort: [IdConversionEntrySort!] = [id_ASC], limit: Int = 20, page: Int = 1): [IdConversionEntry!]!
607
608# Get single invoice data
609#
610# Required permission: Invoice:read
611#
612# Store restrictions apply.
613#
614# Arguments
615# id: (self-explanatory)
616# externalId: (self-explanatory)
617invoice(id: Int, externalId: String): Invoice
618
619# Get all invoices
620#
621# Required permission: Invoice:read
622#
623# Limit must be in range 1 - 200
624#
625# Store restrictions apply.
626#
627# Arguments
628# where: (self-explanatory)
629# sort: (self-explanatory)
630# limit: (self-explanatory)
631# page: (self-explanatory)
632invoices(where: InvoiceFilter, sort: [InvoiceSort!] = [number_DESC, id_ASC], limit: Int = 20, page: Int = 1): [Invoice!]!
633
634# Get collection of invoices in the Relay connection form
635#
636# Required permission: Invoice:read
637#
638# Limit must be in range 1 - 200
639#
640# Store restrictions apply.
641#
642# Arguments
643# where: (self-explanatory)
644# sort: (self-explanatory)
645# first: (self-explanatory)
646# after: (self-explanatory)
647# last: (self-explanatory)
648# before: (self-explanatory)
649invoiceConnection(where: InvoiceFilter, sort: [InvoiceSort!] = [number_DESC, id_ASC], first: Int, after: String, last: Int, before: String): InvoiceConnection!
650
651# Get invoice payments
652#
653# Required permission: Invoice:read
654#
655# Limit must be in range 1 - 200
656#
657# Arguments
658# where: (self-explanatory)
659# sort: (self-explanatory)
660# limit: (self-explanatory)
661# page: (self-explanatory)
662invoicePayments(where: InvoicePaymentFilter, sort: [InvoicePaymentSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [InvoicePayment!]!
663
664# Get all known languages
665#
666# Required permission: Language:read
667#
668# Limit is optional
669#
670# Arguments
671# where: (self-explanatory)
672# sort: (self-explanatory)
673# limit: (self-explanatory)
674# page: (self-explanatory)
675languages(where: LanguageFilter, sort: [LanguageSort!] = [code_ASC, id_ASC], limit: Int, page: Int): [Language!]!
676
677# List translatable fields for each object type.
678# Includes dynamic attributes along their objects, and mapped ones under MappedAttribute type.
679#
680# Required permission: Translation:read
681#
682# All elements are always returned
683#
684# Arguments
685# where: (self-explanatory)
686translatableFields(where: TranslatableFieldsFilter): [TranslatableObjectFields!]!
687
688# Get a list of mapped (non-dynamic) attributes
689#
690# Required permission: Attribute:read
691#
692# Limit must be in range 1 - 200
693#
694# Arguments
695# where: (self-explanatory)
696# sort: (self-explanatory)
697# limit: (self-explanatory)
698# page: (self-explanatory)
699mappedAttributes(where: MappedAttributeFilter, sort: [MappedAttributeSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [MappedAttribute!]!
700
701# Get single market data
702#
703# Required permission: Market:read
704#
705# Store restrictions apply.
706#
707# Arguments
708# id: (self-explanatory)
709# externalId: (self-explanatory)
710market(id: Int, externalId: String): Market
711
712# Get all markets
713#
714# Required permission: Market:read
715#
716# Limit is optional
717#
718# Store restrictions apply.
719#
720# Arguments
721# where: (self-explanatory)
722# sort: (self-explanatory)
723# limit: (self-explanatory)
724# page: (self-explanatory)
725markets(where: MarketFilter, sort: [MarketSort!] = [id_ASC], limit: Int, page: Int): [Market!]!
726
727# Get single measurementChart
728#
729# Required permission: MeasurementChart:read
730#
731# Arguments
732# id: (self-explanatory)
733measurementChart(id: Int!): MeasurementChart
734
735# Get all measurementCharts
736#
737# Required permission: MeasurementChart:read
738#
739# Limit is optional
740#
741# Arguments
742# where: (self-explanatory)
743# sort: (self-explanatory)
744# limit: (self-explanatory)
745# page: (self-explanatory)
746measurementCharts(where: MeasurementChartFilter, sort: [MeasurementChartSort!] = [id_ASC], limit: Int, page: Int): [MeasurementChart!]!
747
748# Get all media sizes available for ProductMedia
749#
750# Required permission: none
751#
752# All elements are always returned
753mediaSizes: [MediaSize!]!
754
755# Get all newsletter subscriptions
756#
757# Required permission: NewsletterSubscription:read
758#
759# Limit must be in range 1 - 200
760#
761# Store restrictions apply.
762#
763# Arguments
764# where: (self-explanatory)
765# sort: (self-explanatory)
766# limit: (self-explanatory)
767# page: (self-explanatory)
768newsletterSubscriptions(
769where: NewsletterSubscriptionFilter,
770sort: [NewsletterSubscriptionSort!] = [id_ASC],
771limit: Int = 20,
772page: Int = 1
773): [NewsletterSubscription!]!
774
775# Get single order data
776#
777# Required permission: Order:read
778#
779# Store restrictions apply.
780#
781# Arguments
782# id: (self-explanatory)
783# number: (self-explanatory)
784# externalId: (self-explanatory)
785order(id: String, number: Int, externalId: String): Order
786
787# Get all orders
788#
789# Required permission: Order:read
790#
791# Limit must be in range 1 - 100
792#
793# Store restrictions apply.
794#
795# Arguments
796# where: (self-explanatory)
797# sort: (self-explanatory)
798# limit: (self-explanatory)
799# page: (self-explanatory)
800orders(where: OrderFilter, sort: [OrderSort!] = [number_DESC], limit: Int = 20, page: Int = 1): [Order!]!
801
802# Get collection of orders in the Relay connection form
803#
804# Required permission: Order:read
805#
806# Limit must be in range 1 - 100
807#
808# Store restrictions apply.
809#
810# Arguments
811# where: (self-explanatory)
812# sort: (self-explanatory)
813# first: (self-explanatory)
814# after: (self-explanatory)
815# last: (self-explanatory)
816# before: (self-explanatory)
817orderConnection(where: OrderFilter, sort: [OrderSort!] = [number_DESC], first: Int, after: String, last: Int, before: String): OrderConnection!
818
819# Get payment history
820#
821# Required permission: PaymentHistory:read
822#
823# Limit must be in range 1 - 200
824#
825# Store restrictions apply.
826#
827# Arguments
828# includeGiftCardsPaymentHistory: (self-explanatory)
829# where: (self-explanatory)
830# sort: (self-explanatory)
831# limit: (self-explanatory)
832# page: (self-explanatory)
833orderPaymentHistory(
834includeGiftCardsPaymentHistory: Boolean = false,
835where: PaymentHistoryEntryFilter,
836sort: [PaymentHistoryEntrySort!] = [id_DESC],
837limit: Int = 20,
838page: Int = 1
839): [PaymentHistoryEntry!]!
840
841# Get payment terms
842#
843# Required permission: PaymentTerms:read
844#
845# Limit is optional
846#
847# Store restrictions apply.
848#
849# Arguments
850# where: (self-explanatory)
851# sort: (self-explanatory)
852# limit: (self-explanatory)
853# page: (self-explanatory)
854paymentTerms(where: PaymentTermsFilter, sort: [PaymentTermsSort!] = [id_ASC], limit: Int, page: Int): [PaymentTerms!]!
855
856# Get single pricelist data
857#
858# Required permission: Pricelist:read
859#
860# Store restrictions apply.
861#
862# Arguments
863# id: (self-explanatory)
864# externalId: (self-explanatory)
865pricelist(id: Int, externalId: String): Pricelist
866
867# Get collection of pricelists by any criteria
868#
869# Required permission: Pricelist:read
870#
871# Limit must be in range 1 - 200
872#
873# Store restrictions apply.
874#
875# Arguments
876# where: (self-explanatory)
877# sort: (self-explanatory)
878# limit: (self-explanatory)
879# page: (self-explanatory)
880pricelists(where: PricelistFilter, sort: [PricelistSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Pricelist!]!
881
882# Get single price alteration data
883#
884# Required permission: Price:read
885#
886# Store restrictions apply.
887#
888# Arguments
889# id: (self-explanatory)
890priceAlteration(id: Int!): PriceAlteration
891
892# Get price alterations
893#
894# Required permission: Price:read
895#
896# All elements are always returned
897#
898# Store restrictions apply.
899#
900# Arguments
901# where: (self-explanatory)
902# sort: (self-explanatory)
903priceAlterations(where: PriceAlterationFilter, sort: [PriceAlterationSort!]): [PriceAlteration!]!
904
905# Get all available lowest prices
906#
907# Required permission: Price:read
908#
909# Limit must be in range 1 - 200
910#
911# Store restrictions apply.
912#
913# Arguments
914# where: (self-explanatory)
915# sort: (self-explanatory)
916# limit: (self-explanatory)
917# page: (self-explanatory)
918lowestPrices(where: LowestPriceFilter, sort: [LowestPriceSort!] = [productVariantId_ASC, pricelistId_ASC], limit: Int = 20, page: Int = 1): [LowestPrice!]!
919
920# Get single product data
921#
922# Required permission: Product:read
923#
924# Arguments
925# id: (self-explanatory)
926# externalId: (self-explanatory)
927product(id: Int, externalId: String): Product
928
929# Get collection of products by any criteria
930#
931# Required permission: Product:read
932#
933# Limit must be in range 1 - 200
934#
935# Arguments
936# where: (self-explanatory)
937# sort: (self-explanatory)
938# limit: (self-explanatory)
939# page: (self-explanatory)
940products(where: ProductFilter, sort: [ProductSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Product!]!
941
942# Get collection of products in the Relay connection form
943#
944# Required permission: Product:read
945#
946# Limit must be in range 1 - 200
947#
948# Arguments
949# where: (self-explanatory)
950# sort: (self-explanatory)
951# first: (self-explanatory)
952# after: (self-explanatory)
953# last: (self-explanatory)
954# before: (self-explanatory)
955productConnection(where: ProductFilter, sort: [ProductSort!] = [id_ASC], first: Int, after: String, last: Int, before: String): ProductConnection!
956
957# Get collection of product sizes by any criteria
958#
959# Required permission: ProductSize:read
960#
961# Limit must be in range 1 - 200
962#
963# Arguments
964# where: (self-explanatory)
965# sort: (self-explanatory)
966# limit: (self-explanatory)
967# page: (self-explanatory)
968productSizes(where: ProductSizeFilter, sort: [ProductSizeSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [ProductSize!]!
969
970# Get collection of product sizes in the Relay connection form
971#
972# Required permission: ProductSize:read
973#
974# Limit must be in range 1 - 200
975#
976# Arguments
977# where: (self-explanatory)
978# sort: (self-explanatory)
979# first: (self-explanatory)
980# after: (self-explanatory)
981# last: (self-explanatory)
982# before: (self-explanatory)
983productSizeConnection(
984where: ProductSizeFilter,
985sort: [ProductSizeSort!] = [id_ASC],
986first: Int,
987after: String,
988last: Int,
989before: String
990): ProductSizeConnection!
991
992# Get single product variant data
993#
994# Required permission: ProductVariant:read
995#
996# Arguments
997# id: (self-explanatory)
998# externalId: (self-explanatory)
999productVariant(id: Int, externalId: String): ProductVariant
1000
1001# Get collection of product variants by any criteria
1002#
1003# Required permission: ProductVariant:read
1004#
1005# Limit must be in range 1 - 200
1006#
1007# Arguments
1008# where: (self-explanatory)
1009# sort: (self-explanatory)
1010# limit: (self-explanatory)
1011# page: (self-explanatory)
1012productVariants(where: ProductVariantFilter, sort: [ProductVariantSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [ProductVariant!]!
1013
1014# Get collection of product variants in the Relay connection form
1015#
1016# Required permission: ProductVariant:read
1017#
1018# Limit must be in range 1 - 200
1019#
1020# Arguments
1021# where: (self-explanatory)
1022# sort: (self-explanatory)
1023# first: (self-explanatory)
1024# after: (self-explanatory)
1025# last: (self-explanatory)
1026# before: (self-explanatory)
1027productVariantConnection(
1028where: ProductVariantFilter,
1029sort: [ProductVariantSort!] = [id_ASC],
1030first: Int,
1031after: String,
1032last: Int,
1033before: String
1034): ProductVariantConnection!
1035
1036# Get single return data
1037#
1038# Required permission: Return:read
1039#
1040# Store restrictions apply.
1041#
1042# Arguments
1043# id: (self-explanatory)
1044# externalId: (self-explanatory)
1045return(id: Int, externalId: String): Return
1046
1047# Get collection of returns by any criteria
1048#
1049# Required permission: Return:read
1050#
1051# Limit must be in range 1 - 200
1052#
1053# Store restrictions apply.
1054#
1055# Arguments
1056# where: (self-explanatory)
1057# sort: (self-explanatory)
1058# limit: (self-explanatory)
1059# page: (self-explanatory)
1060returns(where: ReturnFilter, sort: [ReturnSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Return!]!
1061
1062# Get collection of returns in the Relay connection form
1063#
1064# Required permission: Return:read
1065#
1066# Limit must be in range 1 - 200
1067#
1068# Store restrictions apply.
1069#
1070# Arguments
1071# where: (self-explanatory)
1072# sort: (self-explanatory)
1073# first: (self-explanatory)
1074# after: (self-explanatory)
1075# last: (self-explanatory)
1076# before: (self-explanatory)
1077returnConnection(where: ReturnFilter, sort: [ReturnSort!] = [id_ASC], first: Int, after: String, last: Int, before: String): ReturnConnection!
1078
1079# Get single sales representative
1080#
1081# Required permission: SalesRepresentative:read
1082#
1083# Arguments
1084# id: (self-explanatory)
1085# externalId: (self-explanatory)
1086salesRepresentative(id: Int, externalId: String): SalesRepresentative
1087
1088# Get collection of sales representatives
1089#
1090# Required permission: SalesRepresentative:read
1091#
1092# Limit must be in range 1 - 200
1093#
1094# Arguments
1095# where: (self-explanatory)
1096# sort: (self-explanatory)
1097# limit: (self-explanatory)
1098# page: (self-explanatory)
1099salesRepresentatives(
1100where: SalesRepresentativeFilter,
1101sort: [SalesRepresentativeSort!] = [id_ASC],
1102limit: Int = 20,
1103page: Int = 1
1104): [SalesRepresentative!]!
1105
1106# Get single shipment data
1107#
1108# Required permission: Shipment:read
1109#
1110# Store restrictions apply.
1111#
1112# Arguments
1113# id: (self-explanatory)
1114# externalId: (self-explanatory)
1115shipment(id: Int, externalId: String): Shipment
1116
1117# Get collection of shipments by any criteria
1118#
1119# Required permission: Shipment:read
1120#
1121# Limit must be in range 1 - 200
1122#
1123# Store restrictions apply.
1124#
1125# Arguments
1126# where: (self-explanatory)
1127# sort: (self-explanatory)
1128# limit: (self-explanatory)
1129# page: (self-explanatory)
1130shipments(where: ShipmentFilter, sort: [ShipmentSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [Shipment!]!
1131
1132# Get collection of shipments in Relay connection form
1133#
1134# Required permission: Shipment:read
1135#
1136# Limit must be in range 1 - 200
1137#
1138# Store restrictions apply.
1139#
1140# Arguments
1141# where: (self-explanatory)
1142# sort: (self-explanatory)
1143# first: (self-explanatory)
1144# after: (self-explanatory)
1145# last: (self-explanatory)
1146# before: (self-explanatory)
1147shipmentConnection(
1148where: ShipmentFilter,
1149sort: [ShipmentSort!] = [id_DESC],
1150first: Int,
1151after: String,
1152last: Int,
1153before: String
1154): ShipmentConnection!
1155
1156# Get shipping options
1157#
1158# Required permission: ShippingOption:read
1159#
1160# Limit must be in range 1 - 200
1161#
1162# Arguments
1163# where: (self-explanatory)
1164# sort: (self-explanatory)
1165# limit: (self-explanatory)
1166# page: (self-explanatory)
1167shippingOptions(where: ShippingOptionFilter, sort: [ShippingOptionSort!] = [name_ASC, id_ASC], limit: Int = 20, page: Int = 1): [ShippingOption!]!
1168
1169# Get shipping terms
1170#
1171# Required permission: ShippingTerms:read
1172#
1173# Limit is optional
1174#
1175# Store restrictions apply.
1176#
1177# Arguments
1178# where: (self-explanatory)
1179# sort: (self-explanatory)
1180# limit: (self-explanatory)
1181# page: (self-explanatory)
1182shippingTerms(where: ShippingTermsFilter, sort: [ShippingTermsSort!] = [id_ASC], limit: Int, page: Int): [ShippingTerms!]!
1183
1184# Get single size chart
1185#
1186# Required permission: SizeChart:read
1187#
1188# Arguments
1189# id: (self-explanatory)
1190# externalId: (self-explanatory)
1191sizeChart(id: Int, externalId: String): SizeChart
1192
1193# Get collection of size charts by any criteria
1194#
1195# Required permission: SizeChart:read
1196#
1197# Limit is optional
1198#
1199# Arguments
1200# where: (self-explanatory)
1201# sort: (self-explanatory)
1202# limit: (self-explanatory)
1203# page: (self-explanatory)
1204sizeCharts(where: SizeChartFilter, sort: [SizeChartSort!] = [id_ASC], limit: Int, page: Int): [SizeChart!]!
1205
1206# Get single size localization
1207#
1208# Required permission: SizeChart:read
1209#
1210# Arguments
1211# id: (self-explanatory)
1212sizeLocalization(id: Int!): SizeLocalization
1213
1214# Get collection of size localizations by any criteria
1215#
1216# Required permission: SizeChart:read
1217#
1218# Limit is optional
1219#
1220# Arguments
1221# where: (self-explanatory)
1222# sort: (self-explanatory)
1223# limit: (self-explanatory)
1224# page: (self-explanatory)
1225sizeLocalizations(where: SizeLocalizationFilter, sort: [SizeLocalizationSort!] = [id_ASC], limit: Int, page: Int): [SizeLocalization!]!
1226
1227# Get single store data
1228#
1229# Required permission: Store:read
1230#
1231# Store restrictions apply.
1232#
1233# Arguments
1234# id: (self-explanatory)
1235store(id: Int!): Store
1236
1237# Get collection of stores by any criteria
1238#
1239# Required permission: Store:read
1240#
1241# Limit is optional
1242#
1243# Store restrictions apply.
1244#
1245# Arguments
1246# where: (self-explanatory)
1247# sort: (self-explanatory)
1248# limit: (self-explanatory)
1249# page: (self-explanatory)
1250stores(where: StoreFilter, sort: [StoreSort!] = [id_ASC], limit: Int, page: Int): [Store!]!
1251
1252# Get collection of store plugins by any criteria
1253#
1254# Required permission: StorePlugin:read
1255#
1256# Limit is optional
1257#
1258# Store restrictions apply.
1259#
1260# Arguments
1261# where: (self-explanatory)
1262# sort: (self-explanatory)
1263# limit: (self-explanatory)
1264# page: (self-explanatory)
1265storePlugins(where: StorePluginFilter, sort: [StorePluginSort!] = [id_ASC], limit: Int, page: Int): [StorePlugin!]!
1266
1267# Get collection of subscription plans by any criteria
1268#
1269# Required permission: SubscriptionPlan:read
1270#
1271# Limit must be in range 1 - 200
1272#
1273# Store restrictions apply.
1274#
1275# Arguments
1276# where: (self-explanatory)
1277# sort: (self-explanatory)
1278# limit: (self-explanatory)
1279# page: (self-explanatory)
1280subscriptionPlans(where: SubscriptionPlanFilter, sort: [SubscriptionPlanSort!] = [naturalSort_ASC, id_ASC], limit: Int = 20, page: Int = 1): [SubscriptionPlan!]!
1281
1282# Get defined tax classes
1283#
1284# Required permission: TaxClass:read
1285#
1286# Limit is optional
1287#
1288# Arguments
1289# where: (self-explanatory)
1290# sort: (self-explanatory)
1291# limit: (self-explanatory)
1292# page: (self-explanatory)
1293taxClasses(where: TaxClassFilter, sort: [TaxClassSort!] = [id_ASC], limit: Int, page: Int): [TaxClass!]!
1294
1295# Get defined tax groups
1296#
1297# Required permission: TaxRule:read
1298#
1299# Limit is optional
1300#
1301# Arguments
1302# where: (self-explanatory)
1303# sort: (self-explanatory)
1304# limit: (self-explanatory)
1305# page: (self-explanatory)
1306taxGroups(where: TaxGroupFilter, sort: [TaxGroupSort!] = [id_ASC], limit: Int, page: Int): [TaxGroup!]!
1307
1308# Get defined tax rules
1309#
1310# Required permission: TaxRule:read
1311#
1312# Limit must be in range 1 - 200
1313#
1314# Arguments
1315# where: (self-explanatory)
1316# sort: (self-explanatory)
1317# limit: (self-explanatory)
1318# page: (self-explanatory)
1319taxRules(where: TaxRuleFilter, sort: [TaxRuleSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [TaxRule!]!
1320
1321# Get data of currently authenticated user
1322#
1323# Required permission: none
1324viewer: GraphQLUser!
1325
1326# Get single warehouse
1327#
1328# Required permission: Warehouse:read
1329#
1330# Arguments
1331# id: (self-explanatory)
1332# externalId: (self-explanatory)
1333warehouse(id: Int, externalId: String): Warehouse
1334
1335# Get collection of warehouses
1336#
1337# Required permission: Warehouse:read
1338#
1339# Limit must be in range 1 - 200
1340#
1341# Arguments
1342# where: (self-explanatory)
1343# sort: (self-explanatory)
1344# limit: (self-explanatory)
1345# page: (self-explanatory)
1346warehouses(where: WarehouseFilter, sort: [WarehouseSort!] = [customSort_ASC, id_ASC], limit: Int = 20, page: Int = 1): [Warehouse!]!
1347
1348# Get collection of warehouse deliveries in Relay connection form
1349#
1350# Required permission: StockChange:read
1351#
1352# Limit must be in range 1 - 200
1353#
1354# Arguments
1355# where: (self-explanatory)
1356# sort: (self-explanatory)
1357# first: (self-explanatory)
1358# after: (self-explanatory)
1359# last: (self-explanatory)
1360# before: (self-explanatory)
1361stockChangeConnection(
1362where: StockChangeFilter,
1363sort: [StockChangeSort!] = [id_DESC],
1364first: Int,
1365after: String,
1366last: Int,
1367before: String
1368): StockChangeConnection!
1369
1370# Get collection of stock change lines
1371#
1372# Required permission: StockChange:read
1373#
1374# Limit must be in range 1 - 200
1375#
1376# Arguments
1377# where: (self-explanatory)
1378# sort: (self-explanatory)
1379# limit: (self-explanatory)
1380# page: (self-explanatory)
1381stockChangeLines(where: StockChangeLineFilter, sort: [StockChangeLineSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [StockChangeLine!]!
1382
1383# Required permission: StockChange:read
1384#
1385# Limit must be in range 1 - 200
1386#
1387# Arguments
1388# where: (self-explanatory)
1389# sort: (self-explanatory)
1390# first: (self-explanatory)
1391# after: (self-explanatory)
1392# last: (self-explanatory)
1393# before: (self-explanatory)
1394stockChangeLineConnection(
1395where: StockChangeLineFilter,
1396sort: [StockChangeLineSort!] = [id_ASC],
1397first: Int,
1398after: String,
1399last: Int,
1400before: String
1401): StockChangeLineConnection!
1402
1403# Get a list of subscriptions
1404#
1405# Required permission: Subscription:read
1406#
1407# Limit must be in range 1 - 200
1408#
1409# Store restrictions apply.
1410#
1411# Arguments
1412# where: (self-explanatory)
1413# sort: (self-explanatory)
1414# limit: (self-explanatory)
1415# page: (self-explanatory)
1416subscriptions(where: SubscriptionFilter, sort: [SubscriptionSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [Subscription!]!
1417
1418# Get a list of subscription contracts
1419#
1420# Required permission: Subscription:read
1421#
1422# Limit must be in range 1 - 200
1423#
1424# Store restrictions apply.
1425#
1426# Arguments
1427# where: (self-explanatory)
1428# sort: (self-explanatory)
1429# limit: (self-explanatory)
1430# page: (self-explanatory)
1431subscriptionContracts(
1432where: SubscriptionContractFilter,
1433sort: [SubscriptionContractSort!] = [id_DESC],
1434limit: Int = 20,
1435page: Int = 1
1436): [SubscriptionContract!]!
1437
1438# Get available rate limits
1439#
1440# Required permission: none
1441#
1442# All elements are always returned
1443#
1444# Arguments
1445# where: (self-explanatory)
1446rateLimits(where: RateLimitFilter): [RateLimit!]!
1447
1448# Get the counter(s) for any object type
1449#
1450# Required permission: none
1451counters: Counters!
1452
1453# Calculates how much discount the provided vouchers give to the provided selection
1454#
1455# Required permission: Voucher:read
1456#
1457# Arguments
1458# input: (self-explanatory)
1459calculateVouchers(input: CalculateVoucherInput!): CalculateVouchersPayload!
1460
1461# Get subvouchers
1462#
1463# Required permission: Voucher:read
1464#
1465# Limit must be in range 1 - 200
1466#
1467# Arguments
1468# where: (self-explanatory)
1469# sort: (self-explanatory)
1470# limit: (self-explanatory)
1471# page: (self-explanatory)
1472subvouchers(where: SubvoucherFilter, sort: [SubvoucherSort!] = [id_ASC], limit: Int = 20, page: Int = 1): [Subvoucher!]!
1473
1474# Returns the allocation state of a given order, which is a simplified, summarized view of
1475# order allocations. The result is a list of `OrderAllocationSplit` objects, per warehouse and
1476# allocation status, and a list of order lines with quantities in that status.
1477#
1478# Counting quantities is different for each allocation status:
1479#
1480# - `CONFIRMED` is counted as a sum per line from the specified warehouse (because there may be
1481#
1482# more than one allocation per line + warehouse), where `isWaitingForConfirmation` is false.
1483#
1484# - `WAITING_FOR_CONFIRMATION` is counted the same way, but only for the allocations with
1485#
1486# `isWaitingForConfirmation` as true.
1487#
1488# - `WAITING_FOR_CHECK_FIRST_REALLOCATION` contains all items for orders waiting for check-first.
1489#
1490# They are initially allocated to 'direct' warehouses until one of the check-first warehouses claims it.
1491#
1492# - `UNALLOCATED` is different, as we start with the full line quantity and subtract allocations
1493#
1494# from all warehouses.
1495#
1496# Required permission: Order:read
1497#
1498# All elements are always returned
1499#
1500# Store restrictions apply.
1501#
1502# Arguments
1503# order: (self-explanatory)
1504# where: (self-explanatory)
1505orderAllocationSplits(order: OrderInput!, where: AllocationSplitFilter): [OrderAllocationSplit!]!
1506
1507# Show public IPs of this Centra instance
1508#
1509# Required permission: CentraIP:read
1510#
1511# All elements are always returned
1512centraIPs: [String!]!
1513
1514# Get a list of purchase orders
1515#
1516# Required permission: PurchaseOrder:read
1517#
1518# Limit must be in range 1 - 200
1519#
1520# Arguments
1521# where: (self-explanatory)
1522# sort: (self-explanatory)
1523# limit: (self-explanatory)
1524# page: (self-explanatory)
1525purchaseOrders(where: PurchaseOrderFilter, sort: [PurchaseOrderSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [PurchaseOrder!]!
1526
1527# Get collection of purchase orders in the Relay connection form
1528#
1529# Required permission: PurchaseOrder:read
1530#
1531# Limit must be in range 1 - 200
1532#
1533# Arguments
1534# where: (self-explanatory)
1535# sort: (self-explanatory)
1536# first: (self-explanatory)
1537# after: (self-explanatory)
1538# last: (self-explanatory)
1539# before: (self-explanatory)
1540purchaseOrderConnection(
1541where: PurchaseOrderFilter,
1542sort: [PurchaseOrderSort!] = [id_DESC],
1543first: Int,
1544after: String,
1545last: Int,
1546before: String
1547): PurchaseOrderConnection!
1548
1549# Get a list of purchase order deliveries
1550#
1551# Required permission: PurchaseOrderDelivery:read
1552#
1553# Limit must be in range 1 - 200
1554#
1555# Arguments
1556# where: (self-explanatory)
1557# sort: (self-explanatory)
1558# limit: (self-explanatory)
1559# page: (self-explanatory)
1560purchaseOrderDeliveries(
1561where: PurchaseOrderDeliveryFilter,
1562sort: [PurchaseOrderDeliverySort!] = [id_DESC],
1563limit: Int = 20,
1564page: Int = 1
1565): [PurchaseOrderDelivery!]!
1566
1567# Get collection of purchase order deliveries in the Relay connection form
1568#
1569# Required permission: PurchaseOrderDelivery:read
1570#
1571# Limit must be in range 1 - 200
1572#
1573# Arguments
1574# where: (self-explanatory)
1575# sort: (self-explanatory)
1576# first: (self-explanatory)
1577# after: (self-explanatory)
1578# last: (self-explanatory)
1579# before: (self-explanatory)
1580purchaseOrderDeliveryConnection(
1581where: PurchaseOrderDeliveryFilter,
1582sort: [PurchaseOrderDeliverySort!] = [id_DESC],
1583first: Int,
1584after: String,
1585last: Int,
1586before: String
1587): PurchaseOrderDeliveryConnection!
1588
1589# Get single supplier data by ID
1590#
1591# Required permission: Supplier:read
1592#
1593# Arguments
1594# id: (self-explanatory)
1595supplier(id: Int!): Supplier
1596
1597# Get a list of suppliers
1598#
1599# Required permission: Supplier:read
1600#
1601# Limit must be in range 1 - 200
1602#
1603# Arguments
1604# where: (self-explanatory)
1605# sort: (self-explanatory)
1606# limit: (self-explanatory)
1607# page: (self-explanatory)
1608suppliers(where: SupplierFilter, sort: [SupplierSort!] = [name_ASC], limit: Int = 20, page: Int = 1): [Supplier!]!
1609
1610# Required permission: Event:read
1611#
1612# All elements are always returned
1613#
1614# Arguments
1615# where: (self-explanatory)
1616eventListeners(where: EventListenerFilter): [EventListener!]!
1617
1618# Get N oldest events.
1619# After they are processed, they must be confirmed by calling the confirmEvents mutation.
1620# Otherwise, the repetitive calls of the query will be returning the same events.
1621# You can filter by object type and change type for all types of events, and additionally
1622# filter by store and market for events that are related to them.
1623#
1624# Required permission: Event:read
1625#
1626# Limit must be in range 1 - 200
1627#
1628# Store restrictions apply.
1629#
1630# Arguments
1631# where: (self-explanatory)
1632# limit: (self-explanatory)
1633events(where: EventFilter, limit: Int! = 20): [Event!]!
1634
1635# Required permission: MediaBatch:read
1636#
1637# Arguments
1638# queueId: (self-explanatory)
1639mediaBatch(queueId: String!): MediaBatch
1640
1641# Get all users for which tokens were generated
1642#
1643# Required permission: admin
1644#
1645# Limit must be in range 1 - 200
1646#
1647# Arguments
1648# where: (self-explanatory)
1649# sort: (self-explanatory)
1650# limit: (self-explanatory)
1651# page: (self-explanatory)
1652graphQLAccess(where: GraphQLAccessFilter, sort: [GraphQLAccessSort!] = [id_DESC], limit: Int = 20, page: Int = 1): [GraphQLAccess!]!
1653
1654# Get all integration names so that one can select it instead of typing
1655#
1656# Required permission: admin
1657#
1658# All elements are always returned
1659integrationNames: [String!]!
1660
1661# Get all permission names
1662#
1663# Required permission: admin
1664#
1665# All elements are always returned
1666permissionNames: [String!]!
1667
1668# Get all rate limit tiers
1669#
1670# Required permission: admin
1671#
1672# All elements are always returned
1673#
1674# Arguments
1675# where: (self-explanatory)
1676rateLimitTiers(where: RateLimitTierFilter): [RateLimitTier!]!
1677
1678}

link Required by

This element is not required by anyone