Order DB Export
⚠️ Deprecated Endpoint
This endpoint is deprecated and will no longer be maintained. Compared to the previous version:
- all previously collected information remains associated with the order
- the use of Shopify webhooks is removed
For all new developments, use Orders > Import List, which introduces:
- a more standard handling of order retrieval
👉 See the new documentation: Import List
Orders are received by Flowlyze via a Shopify webhook.
They are enriched with information regarding:
- location (warehouse assignment on Shopify side).
- payments (information related to payments).
The prepared Adapter inserts complete order data into an external DB and adds a tag to the order to have the ability to verify export (EXPORTED).
The isProcessed field will be reset to false on each update.
CREATE TABLE Orders(
id INT auto_increment primary key,
orderNumber VARCHAR(255) NOT NULL,
jsonString MEDIUMTEXT NOT NULL,
channel VARCHAR(20) NOT NULL,
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updatedAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
isProcessed bool DEFAULT false
)
Destination configuration
Configure a Shopify destination and associate it with the flow, in addition to the basic data flow configuration.
| Field | Value | Notes |
|---|---|---|
Destination Type | Shopify | |
Operation | [DEPRECATED] - Order to database | POST /egress/order-to-db |
GraphQL endpoint URL | https://SHOPIFYURL.myshopify.com/ | Shopify Admin API GraphQL endpoint URL |
Admin API access token | shpat_CODICEALFANUMERICO | Or Client ID (API key) + Client secret — see Authentication |
Client ID (API key) | YOUR_CLIENT_ID | |
Client secret | YOUR_CLIENT_SECRET | |
Sync order once | true / false | If true, the order is inserted only once without propagating updates (default: false) |
Channel code | Your Shopify Store | Shop code to disambiguate orders when multiple flows share the same database |
Connection string | Server=host;Database=DBNAME;… | Database connection string |
Deprecated — previous configuration (HTTP Adapter)
Configuration via HTTP Adapter with Base Url, Resource Path, and x-api-key header in Settings Override is deprecated. Use the Shopify destination configuration described above. For new developments, prefer Import List.
In addition to the basic data flow configuration the following Settings Override settings were required:
| Field | Value | Note |
|---|---|---|
Base Url | https://adapter.flowlyze.io | adapter URL |
Resource Path | /api/adp/shopify/egress/order-to-db | adapter path for the order flow |
Headers :: x-api-key | ********** | API key for endpoint interaction verification |
Headers :: x-shopify-graphql-url | https://SHOPIFYURL.myshopify.com/ | Shopify shop URL to connect to |
Headers :: x-shopify-access-token | shpat_CODICEALFANUMERICO | secret of the custom app created for integration |
Headers :: x-sync-order-once | true | inserts the order only once, does not propagate updates (default false) |
Headers :: x-connection-string | database connection string | e.g: Server=host;Database=DBNAME;Uid=username;Pwd=password |
Headers :: channel-code | Shopify shop code | to be used in case multiple flows go to the same db to disambiguate orders |
How to configure the Webhook on Shopify
- Go to the Settings section in your Shopify admin panel.
- Select Notifications from the left menu.
- Select the Webhooks section.
- Click on Create Webhook.
- Choose the event for which you want to receive the notification (e.g. for this flow you need to select
Order update). - Select the format (e.g.
Json). - Enter the URL where you will receive notifications (e.g. for this flow the Flowlyze flow URL).
- Select the API version 'Webhook API version' (e.g.
2024-10)
For more information, visit the official Shopify documentation for creating Webhooks.
Example of retrieved information
{
"Id": "gid://shopify/Order/6082876866867",
"Name": "#1028",
"CreatedAt": "2024-10-10T08:39:45+00:00",
"ProcessedAt": "2024-10-10T08:39:42+00:00",
"UpdatedAt": "2024-11-12T10:32:02+00:00",
"CancelledAt": null,
"ClosedAt": null,
"CancelReason": null,
"CurrencyCode": "EUR",
"CustomerLocale": "en-IT",
"Note": "note",
"CustomAttributes": [
{
"Key": "orderSynced",
"Value": "TRUE"
}
],
"Tags": [
"EXPORTED",
"IPaaS Exchange Exported: 2"
],
"App": {
"Id": "gid://shopify/App/580111"
},
"Confirmed": true,
"ConfirmationNumber": "8HFPXX16L",
"Email": "m.rossi.prova@sintraconsulting.eu",
"EstimatedTaxes": false,
"TaxesIncluded": true,
"TaxExempt": false,
"PresentmentCurrencyCode": "EUR",
"Test": true,
"ClientIp": "151.3.39.97",
"DiscountApplications": {
"Nodes": [
{
"AllocationMethod": "EACH",
"TargetSelection": "ENTITLED",
"TargetType": "LINE_ITEM",
"Index": 0,
"Code": "0CXZ7SZP2KRG",
"Value": {
"Amount": 0,
"CurrencyCode": null,
"Percentage": 30.0
}
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjowLCJsYXN0X3ZhbHVlIjowfQ=="
}
},
"CurrentSubtotalPriceSet": {
"ShopMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
}
},
"CurrentTotalPriceSet": {
"ShopMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 239.9,
"CurrencyCode": "EUR"
}
},
"CurrentTotalDiscountsSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"CurrentTotalTaxSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"CurrentTotalDutiesSet": null,
"CurrentTotalAdditionalFeesSet": null,
"OriginalTotalDutiesSet": null,
"OriginalTotalAdditionalFeesSet": null,
"TotalOutstandingSet": {
"ShopMoney": {
"Amount": -384.1,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": -384.1,
"CurrencyCode": "EUR"
}
},
"SubtotalPriceSet": {
"ShopMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
}
},
"TotalPriceSet": {
"ShopMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 1047.9,
"CurrencyCode": "EUR"
}
},
"TotalDiscountsSet": {
"ShopMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
}
},
"CartDiscountAmountSet": {
"ShopMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
}
},
"TotalTaxSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"TotalShippingPriceSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"TaxLines": [
],
"Customer": {
"Id": "gid://shopify/Customer/8047784263987",
"FirstName": "Mario",
"LastName": "Rossi",
"Email": "m.rossi.prova@sintraconsulting.eu",
"Phone": null,
"Locale": "en-IT",
"EmailMarketingConsent": {
"ConsentUpdatedAt": null,
"MarketingState": "NOT_SUBSCRIBED"
}
},
"BillingAddress": {
"Name": "Mario Rossi",
"FirstName": "Mario",
"LastName": "Rossi",
"Address1": "Via Roma 1",
"Address2": null,
"City": "Firenze",
"Company": null,
"Country": "Italy",
"Zip": "50123",
"Phone": null,
"Province": "Firenze",
"ProvinceCode": "FI",
"CountryCodeV2": "IT",
"Latitude": "43.772376",
"Longitude": "11.2543546"
},
"ShippingAddress": {
"Name": "Mario Rossi",
"FirstName": "Mario",
"LastName": "Rossi",
"Address1": "Via Roma 1",
"Address2": null,
"City": "Firenze",
"Company": null,
"Country": "Italy",
"Zip": "50123",
"Phone": null,
"Province": "Firenze",
"ProvinceCode": "FI",
"CountryCodeV2": "IT",
"Latitude": "43.772376",
"Longitude": "11.2543546"
},
"Fulfillments": [
{
"Id": "gid://shopify/Fulfillment/5374509580595",
"Name": null,
"Status": "SUCCESS",
"CreatedAt": "2024-10-10T10:06:44+00:00",
"UpdatedAt": null,
"DeliveredAt": null,
"DisplayStatus": "FULFILLED",
"EstimatedDeliveryAt": null,
"TrackingInfo": null,
"TotalQuantity": 0,
"Location": null,
"FulfillmentLineItems": null
},
{
"Id": "gid://shopify/Fulfillment/5374470127923",
"Name": null,
"Status": "SUCCESS",
"CreatedAt": "2024-10-10T09:30:53+00:00",
"UpdatedAt": null,
"DeliveredAt": null,
"DisplayStatus": "FULFILLED",
"EstimatedDeliveryAt": null,
"TrackingInfo": null,
"TotalQuantity": 0,
"Location": null,
"FulfillmentLineItems": null
}
],
"Transactions": [
{
"AmountSet": {
"ShopMoney": {
"Amount": 624.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 624.0,
"CurrencyCode": "EUR"
}
},
"AuthorizationCode": "53433",
"ProcessedAt": "2024-10-10T08:39:42Z",
"Status": "SUCCESS",
"ErrorCode": null,
"Gateway": "bogus",
"Id": "gid://shopify/OrderTransaction/7345445339443",
"Kind": "SALE",
"ReceiptJson": "{\"paid_amount\":\"624.00\"}",
"ParentTransaction": null,
"PaymentDetails": {
"AvsResultCode": null,
"Bin": "1",
"CvvResultCode": null,
"Number": "•••• •••• •••• 1",
"Company": "Bogus"
}
}
],
"DisplayFinancialStatus": "PAID",
"PaymentGatewayNames": [
"bogus"
],
"FulfillmentOrders": {
"Nodes": [
{
"Id": "gid://shopify/FulfillmentOrder/7038439817523",
"Status": "CLOSED",
"AssignedLocation": {
"Location": {
"Id": "gid://shopify/Location/99130769715"
}
},
"LineItems": {
"Nodes": [
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473772986675",
"Sku": "ABC0015-Black",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473773019443",
"Sku": "ABC0015-Green",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473773052211",
"Sku": "ABC0015-Pink",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjoxNTQ3Mzc3MzA1MjIxMSwibGFzdF92YWx1ZSI6MTU0NzM3NzMwNTIyMTF9"
}
}
},
{
"Id": "gid://shopify/FulfillmentOrder/7038480744755",
"Status": "CLOSED",
"AssignedLocation": {
"Location": {
"Id": "gid://shopify/Location/99130769715"
}
},
"LineItems": {
"Nodes": [
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": null
}
}
},
{
"Id": "gid://shopify/FulfillmentOrder/7038484283699",
"Status": "CLOSED",
"AssignedLocation": {
"Location": {
"Id": "gid://shopify/Location/99130769715"
}
},
"LineItems": {
"Nodes": [
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473830428979",
"Sku": "ABC0016-Pink",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473837113651",
"Sku": "0135DB",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
},
{
"Id": "gid://shopify/FulfillmentOrderLineItem/15473837146419",
"Sku": "0135W",
"RemainingQuantity": 0,
"TotalQuantity": 1,
"Warnings": [
]
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjoxNTQ3MzgzNzE0NjQxOSwibGFzdF92YWx1ZSI6MTU0NzM4MzcxNDY0MTl9"
}
}
}
],
"PageInfo": {
"HasNextPage": true,
"EndCursor": "eyJsYXN0X2lkIjo3MDM4NDM5ODE3NTIzLCJsYXN0X3ZhbHVlIjoiNzAzODQzOTgxNzUyMyJ9"
}
},
"LineItems": {
"Nodes": [
{
"Id": "gid://shopify/LineItem/15329691894067",
"Sku": "ABC0015-Black",
"Name": "ABC0015 Product - Black / One size",
"Quantity": 1,
"Title": "ABC0015 Product",
"VariantTitle": "Black / One size",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 140.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 140.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9320461205811"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49481263350067",
"SelectedOptions": [
{
"Name": "color",
"Value": "Black"
},
{
"Name": "size",
"Value": "One size"
}
],
"Barcode": null,
"Price": 200.0,
"CompareAtPrice": 200.0
},
"TaxLines": [
],
"DiscountAllocations": [
{
"AllocatedAmountSet": {
"ShopMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 60.0,
"CurrencyCode": "EUR"
}
},
"DiscountApplication": {
"Index": 0
}
}
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329691926835",
"Sku": "ABC0015-Green",
"Name": "ABC0015 Product - Green / One size",
"Quantity": 1,
"Title": "ABC0015 Product",
"VariantTitle": "Green / One size",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 284.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9320461205811"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49481263317299",
"SelectedOptions": [
{
"Name": "color",
"Value": "Green"
},
{
"Name": "size",
"Value": "One size"
}
],
"Barcode": "",
"Price": 150.0,
"CompareAtPrice": 150.0
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329691959603",
"Sku": "ABC0015-Pink",
"Name": "ABC0015 Product - Pink / One size",
"Quantity": 1,
"Title": "ABC0015 Product",
"VariantTitle": "Pink / One size",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 200.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9320461205811"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49481263284531",
"SelectedOptions": [
{
"Name": "color",
"Value": "Pink"
},
{
"Name": "size",
"Value": "One size"
}
],
"Barcode": "",
"Price": 120.0,
"CompareAtPrice": null
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329748812083",
"Sku": "ABC0016-Pink",
"Name": "ABC0016 Product - Pink",
"Quantity": 1,
"Title": "ABC0016 Product",
"VariantTitle": "Pink",
"Vendor": "Vendor",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 54.9,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9336133976371"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49541884248371",
"SelectedOptions": [
{
"Name": "color",
"Value": "Pink"
}
],
"Barcode": "",
"Price": 198.99,
"CompareAtPrice": 198.99
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329755496755",
"Sku": "0135DB",
"Name": "6 Panel Linear Logo Strapback - Darkblue",
"Quantity": 1,
"Title": "6 Panel Linear Logo Strapback",
"VariantTitle": "Darkblue",
"Vendor": "51",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 185.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9325820576051"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49503958106419",
"SelectedOptions": [
{
"Name": "color",
"Value": "Darkblue"
}
],
"Barcode": "5423930393432",
"Price": 185.0,
"CompareAtPrice": 185.0
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
},
{
"Id": "gid://shopify/LineItem/15329755529523",
"Sku": "0135W",
"Name": "6 Panel Linear Logo Strapback - White",
"Quantity": 1,
"Title": "6 Panel Linear Logo Strapback",
"VariantTitle": "White",
"Vendor": "51",
"TotalDiscountSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceAfterAllDiscountsSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"DiscountedTotalSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"OriginalTotalSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"OriginalUnitPriceSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"DiscountedUnitPriceSet": {
"ShopMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 184.0,
"CurrencyCode": "EUR"
}
},
"Product": {
"Id": "gid://shopify/Product/9325820576051"
},
"Variant": {
"Id": "gid://shopify/ProductVariant/49503958139187",
"SelectedOptions": [
{
"Name": "color",
"Value": "White"
}
],
"Barcode": "5423293283980",
"Price": 184.0,
"CompareAtPrice": 200.0
},
"TaxLines": [
],
"DiscountAllocations": [
],
"CustomAttributes": [
]
}
],
"PageInfo": {
"HasNextPage": true,
"EndCursor": "eyJsYXN0X2lkIjoxNTMyOTc1NTQ5Njc1NSwibGFzdF92YWx1ZSI6MTUzMjk3NTU0OTY3NTV9"
}
},
"ShippingLines": {
"Nodes": [
{
"Title": "Standard",
"OriginalPriceSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"DiscountedPriceSet": {
"ShopMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
},
"PresentmentMoney": {
"Amount": 0.0,
"CurrencyCode": "EUR"
}
},
"TaxLines": [
]
}
],
"PageInfo": {
"HasNextPage": false,
"EndCursor": "eyJsYXN0X2lkIjo0ODY1OTExODgyMDM1LCJsYXN0X3ZhbHVlIjoiNDg2NTkxMTg4MjAzNSJ9"
}
}
}