productsByDomainV2

This query is useful for paging through a set of products from a domain from Shopify. For example, if the store's canonical URL is https://abc.myshopify.com, then the domain is abc.myshopify.com, all lowercased.

Arguments

input : ProductsByDomainInput!

An object containing the domain name of the store.


pagination : OffsetPaginationInput!

An object containing pagination parameters.


Returns

Product.*: Product

Any requested field from an object which implements the Product interface.


Examples

query DemoShopifyProductByDomain {
  productsByDomainV2(
    input: { domain: "hiutdenim.co.uk" }
    pagination: { limit: 3, offset: 2 }
  ) {
    id
    title
    marketplace
    description
    isAvailable
    price {
      ... on Price {
        value
        currency
        displayValue
      }
    }
  }
}
{
  "data": {
    "productsByDomainV2": [
      {
        "id": "4638144397382",
        "title": "Do One Thing Well Poster - Walden Arts",
        "marketplace": "SHOPIFY",
        "description": "We have one mantra: Do One Thing Well.\n\nThat idea is the life-blood of the business.\n\nWe make jeans. Some of the best in the world.\n\nAnd that it is. It's enough.\n\nWe have one mantra and many passions.\n\nOne of those passions is print.\n\nBecause you can't beat the power of print.\n\nOrder a copy now. Only 50 available.\n\nDimensions: A2 (420mm x 594mm).\n\nScreen printed in Cardigan by Walden Arts.\n\nArt by Marion Deuchars.",
        "isAvailable": true,
        "price": {
          "value": 4167,
          "currency": "GBP",
          "displayValue": "£41.67"
        }
      },
      {
        "id": "6919671087174",
        "title": "Khaki Japanese Chino Selvedge - Work - Regular Fit",
        "marketplace": "SHOPIFY",
        "description": "*Fit*\n\n* True classic cut\n* Low - Mid rise\n* Regular, straight leg\n* Authentic 5 pocket jean\n* Button fly\n* Hiut Denim branded leather patch\n* Fastened with copper rivets on pockets\n* Super tough ecru twill pocket lining\n* Signature red owl rivet on left back pocket\n* Our Advice - In this Fabric Size down\n\nModel wears [email protected] - Regular Fit.",
        "isAvailable": false,
        "price": {
          "value": 16667,
          "currency": "USD",
          "displayValue": "$166.67"
        }
      },
      {
        "id": "6919660372038",
        "title": "Green Japanese Chino Selvedge - Work - Regular Fit",
        "marketplace": "SHOPIFY",
        "description": "*Fit*\n\n* True classic cut\n* Low - Mid rise\n* Regular, straight leg\n* Authentic 5 pocket jean\n* Button fly\n* Hiut Denim branded leather patch\n* Fastened with copper rivets on pockets\n* Super tough ecru twill pocket lining\n* Signature red owl rivet on left back pocket\n\nModel wears [email protected] - Regular Fit.",
        "isAvailable": false,
        "price": {
          "value": 15000,
          "currency": "GBP",
          "displayValue": "£150.00"
        }
      }
    ]
  }
}