legacyOrderLine Query
Look up a lossless historical order line.
Added in Saleor 3.23legacyOrderLine(
sourceStore: String!
sourceOrderId: String!
sourceId: String!
sourcePlatform: String = "shopify"
): LegacyOrderLine
Details
type LegacyOrderLine implements Node {
id: ID!
sourcePlatform: String!
sourceStore: String!
sourceId: String!
sourceOrderId: String!
name: String!
sku: String!
quantity: Int!
money: JSONString!
contentSha256: String!
rawPayload: JSONString!
}
Arguments
sourceStore ● String!
Source store hostname.
sourceOrderId ● String!
Immutable source order ID.
sourceId ● String!
Immutable source line ID.
sourcePlatform ● String
Source platform name.
Type
LegacyOrderLine
Lossless, read-only historical order line.
Added in Saleor 3.23