INTERFACE
Shipment
link GraphQL Schema definition
1 interface Shipment { 2 Int! : 3 4 String! : 5 6 # Arguments 7 # format: ISO-8601 8 String = "Y-m-d\\TH:i:sP"): DateTimeTz! ( : 9 10 # Arguments 11 # format: ISO-8601 12 String = "Y-m-d\\TH:i:sP"): DateTimeTz! ( : 13 14 Boolean! : 15 16 Boolean! : 17 18 Boolean! : 19 20 Boolean! : 21 22 ConsignationWarehouseStatus! : 23 24 String : 25 26 String : 27 28 Int! : 29 30 MonetaryValue : 31 32 # Arguments 33 # includingTax: (self-explanatory) 34 Boolean! = true): MonetaryValue! ( : 35 36 String : 37 38 # Arguments 39 # format: ISO-8601 40 String = "Y-m-d\\TH:i:sP"): DateTimeTz ( : 41 42 Boolean! : 43 44 # Arguments 45 # format: ISO-8601 46 String = "Y-m-d\\TH:i:sP"): DateTimeTz ( : 47 48 Boolean! : 49 50 # Arguments 51 # format: ISO-8601 52 String = "Y-m-d\\TH:i:sP"): DateTimeTz ( : 53 54 MonetaryValue : 55 56 Float! : 57 58 # Required permission: AdminUser:read 59 AdminUser : 60 61 CarrierInformation : 62 63 # Required permission: Order:read 64 # 65 # All elements are always returned 66 OrderDiscount!]! : [ 67 68 # Required permission: none 69 # 70 # All elements are always returned 71 ShipmentLine!]! : [ 72 73 # Required permission: Shipment.shippingAddress:read 74 Address : 75 76 # Required permission: StorePlugin:read 77 # 78 # Store restrictions apply. 79 StorePlugin : 80 81 # Required permission: Store:read 82 # 83 # Store restrictions apply. 84 Store! : 85 86 # Required permission: Shipment:read 87 ShipmentTotals! : 88 89 String : 90 91 # Required permission: Invoice:read 92 # 93 # All elements are always returned 94 # 95 # Store restrictions apply. 96 Invoice!]! : [ 97 98 # Required permission: Order:read 99 # 100 # Store restrictions apply. 101 Order! : 102 103 # Required permission: Return:read 104 # 105 # All elements are always returned 106 # 107 # Store restrictions apply. 108 Return!]! : [ 109 110 }