No content to show
User Activity
Hi everyone,I'm encountering an issue while trying to associate a product category using the productSet mutation in GraphQL (ver. 2024-04 or 2024-07).Here's the situation:When I click on "show deprecated fields" I see the productCategory field. The d...
I'm trying to get the orders with email attribute not null. I tried with this query but I always get an empty result set: {
orders(first: 180, query: "email:*") {
edges {
node {
id
name
email
shippingLines (first:10) {
edge...
08-01-2022
Hi everyone,I'm using a bulk productCreate mutation to load several products, then it happens that I need to update the product SEO title and a few metafields of its variants, so I'm using productUpdate bulk operation but SEO title and metafields are...
I have the same issue, I tried API version 2022-01, 2022-4 and unstable and both productCreate or productUpdate mutations ignore standardizedProductType, below an example: mutation {
productCreate(
input: {
title: "Foo bar"
vendor: "Acme"
...
Hi,I'm creating an embedded admin app that uses the Index Table Polaris component.I added the index table component in my app's page by taking the example "Index Table with bulk actions" as inspiration. I was wondering which component should I use to...