No content to show
User Activity
I do see the description on the MetafieldDefinition, however it has not been applied to the Metafields themselves. Unfortunately accessing the MetafieldDefinition only available in GraphQL. I understand the intuition that the MetafieldDefinition.desc...
Hi Indextwo,
I just created a test store, added a Metafield with a description and performed a curl GET and did see the description get returned. Is there a specific store (maybe a test store) that is exhibiting this behavior that I could take a lo...
02-21-2023
I see what is wrong, I do not know what the default api version is, but I would suggest changing it to 2023-01.
So change the one line to this `client.BaseAddress = new Uri($"https://{shopifyUrl}/admin/api/2023-01/graphql.json");` and nodes will wo...
02-21-2023
Are you still in the same fiddle? I see a couple of issues there, but none that would result in that error message. Can you share your query here?
The nodes path is a bit shorter, but `edges -> nodes` is probably better, particularly since you will...
02-20-2023
Hi CubiGear,
In the fiddle query, you are only requesting the product's metafields. In our last discussion I mentioned looping through Variants to get their metafields like this:
query ProductVariantMetafields {
product(id:"gid://shopify/Produc...
02-17-2023
Hi CubiGear,
I notice a couple of things in that fiddle. I am sure you noticed that the prompts at the top needed to be replaced:
string shopifyUrl = "your_store";string apiKey = "your_api_key";string apiSecret = "your_api_secret";
I /think/ that...
I agree, that is a disadvantage of the REST API. I am sure you have evaluated the GraphQL API and know that would allow for querying in fewer requests. Unfortunately querying all products -> all variants -> all metafields was blocked due to execution...
Hi CubiGear,
I am not set up to run C#, but I ran the following cURL command on your shop for the product "Père Noël", variant "L/TA" and received the metafields shown after. Note I redacted key parts of the cURL request and response:
curl --req...
Hi CubiGear,
I connected with the team that owns the products endpoint, `include` is not a parameter for that endpoint. It may be applicable to product variant webhook subscriptions. In order to access the product variant metafields you will want t...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
2222 | 02-21-2023 05:29 PM | |
2350 | 02-16-2023 01:13 PM |