Skip to main content

Order DB Export

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
)

Order configurations for DB sending

FieldValueNote
Base Urlhttps://adapt.flowlyze.comadapter URL
Resource Path/api/adp/shopify/egress/order-to-dbadapter path for the order flow
Headers :: x-api-key**********API key for endpoint interaction verification
Headers :: x-shopify-graphql-urlhttps://SHOPIFYURL.myshopify.com/Shopify shop URL to connect to
Headers :: x-shopify-access-tokenshpat_CODICEALFANUMERICOsecret of the custom app created for integration
Headers :: x-sync-order-oncetrueinserts the order only once, does not propagate updates (default false)
Headers :: x-connection-stringdatabase connection stringe.g: Server=host;Database=DBNAME;Uid=username;Pwd=password
Headers :: channel-codeShopify shop codeto be used in case multiple flows go to the same db to disambiguate orders
info

How to configure the Webhook on Shopify

  1. Go to the Settings section in your Shopify admin panel.
  2. Select Notifications from the left menu.
  3. Select the Webhooks section.
  4. Click on Create Webhook.
  5. Choose the event for which you want to receive the notification (e.g. for this flow you need to select Order update).
  6. Select the format (e.g. Json).
  7. Enter the URL where you will receive notifications (e.g. for this flow the Flowlyze flow URL).
  8. 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"
}
}
}