Untitled

 avatar
unknown
graphqlschema
3 years ago
549 B
6
Indexable
  query ProductERP {
    collection(handle: "όλα-τα-προιόντα") {
      handle
      products(first: 1, 
				filters: {
					productMetafield: {
						namespace: "magento", 
						key: "ceid", 
						value: "36-00089"
					}
				}) {
        edges {
          node {
						id
            handle
            title
						totalInventory
						vendor
						    variants(first: 15) {
								edges {
									node {
										id
										sku
									}
								}
							}
          }
        }
      }
    }
  }
Editor is loading...