OBJECT
Supplier
link GraphQL Schema definition
1 type Supplier { 2 : Int! 3 4 : String! 5 6 : Status! 7 8 # Required permission: Supplier.address:read 9 : Address 10 11 : String 12 13 : String 14 15 # Required permission: Supplier.comment:read 16 : String 17 18 # Required permission: none 19 : Currency 20 21 # Required permission: PaymentTerms:read 22 # 23 # Store restrictions apply. 24 : PaymentTerms 25 26 # Required permission: Warehouse:read 27 : Warehouse 28 29 # Required permission: PurchaseOrderDelivery:read 30 # 31 # Limit must be in range 1 - 200 32 # 33 # Arguments 34 # where: (self-explanatory) 35 # sort: (self-explanatory) 36 # limit: (self-explanatory) 37 # page: (self-explanatory) 38 ( 39 : PurchaseOrderDeliveryFilter, 40 : [PurchaseOrderDeliverySort!] = [id_DESC], 41 : Int = 20, 42 : Int = 1 43 ): [PurchaseOrderDelivery!]! 44 45 # Required permission: PurchaseOrder:read 46 # 47 # Limit must be in range 1 - 200 48 # 49 # Arguments 50 # where: (self-explanatory) 51 # sort: (self-explanatory) 52 # limit: (self-explanatory) 53 # page: (self-explanatory) 54 (: PurchaseOrderFilter, : [PurchaseOrderSort!] = [id_DESC], : Int = 20, : Int = 1): [PurchaseOrder!]! 55 56 # Required permission: ShippingTerms:read 57 # 58 # Store restrictions apply. 59 : ShippingTerms 60 61 # Required permission: ProductVariantSupply:read 62 # 63 # Limit must be in range 1 - 200 64 # 65 # Arguments 66 # where: (self-explanatory) 67 # sort: (self-explanatory) 68 # limit: (self-explanatory) 69 # page: (self-explanatory) 70 ( 71 : ProductVariantSupplyFilter, 72 : [ProductVariantSupplySort!] = [productName_ASC, productVariantName_ASC], 73 : Int = 20, 74 : Int = 1 75 ): [ProductVariantSupply!]! 76 77 }
link Required by
- EventTarget Contains object types, which are possible values of EventObjectType, with interfaces resolved to concrete types
- ProductVariantSupply
- PurchaseOrder
- PurchaseOrderDelivery
- Query The main queries are here, click to expand
- SupplierCreatePayload
- SupplierProductVariantsSetPayload
- SupplierProductVariantsUnsetPayload
- SupplierUpdatePayload