OBJECT
Collection
link GraphQL Schema definition
1 type Collection { 2 : Int! 3 4 : Status! 5 6 : String! 7 8 : String! 9 10 # Required permission: Collection.totalProducts:read 11 : Int! 12 13 # Required permission: Product:read 14 # 15 # Limit must be in range 1 - 200 16 # 17 # Arguments 18 # where: (self-explanatory) 19 # sort: (self-explanatory) 20 # limit: (self-explanatory) 21 # page: (self-explanatory) 22 (: ProductFilter, : [ProductSort!] = [id_ASC], : Int = 20, : Int = 1): [Product!]! 23 24 : String 25 26 }
link Required by
- BundleItemOrderLine
- BundleOrderLine
- CollectionCreatePayload
- CollectionEdge
- CollectionUpdatePayload
- EventTarget Contains object types, which are possible values of EventObjectType, with interfaces resolved to concrete types
- GiftCertificateOrderLine
- OrderLine
- Product
- ProductOrderLine
- Query The main queries are here, click to expand