Skip to main content
Filter by
Sorted by
Tagged with
Tooling
0 votes
0 replies
60 views

Add charge to shipping rate based on weight in Shopify I want to add an extra charge to the shipping rate based on cart weight. If the total cart weight exceeds 1 kg, I want to add an additional 20 tk ...
Mariful Islam Saad's user avatar
0 votes
0 answers
37 views

/// Mutation to create a customer const String customerCreateMutation = r''' mutation MyMutation($firstName: String, $lastName: String, $email: String!, $password: String!, $acceptsMarketing: Boolean, ...
Mujtaba Farhan's user avatar
-1 votes
1 answer
222 views

I'm building a Shopify app using the official @shopify/shopify-app-remix framework with PrismaSessionStorage. In my App Proxy route, I try to send an authenticated Admin GraphQL request using an ...
Vincent Gates's user avatar
0 votes
1 answer
168 views

I'm trying to add category-specific metafields to products (and their variants) using the Shopify Admin GraphQL API, but the metafields are not being created. Here’s what I’m doing and where I’m stuck:...
Kadir Emre Parlak's user avatar
1 vote
1 answer
71 views

I'm trying to create a productCreate mutation which specifies the available colours for the product, but I'm getting the error 'The 'shopify.color-pattern' metafield has no values and none were passed ...
dartacus's user avatar
  • 636
1 vote
0 answers
56 views

I'm trying to programmatically sync the sub-collections of a Shopify product as a metafield on each of its variants using the Shopify REST Admin API and Node.js (Axios). Here's what I’m doing: Fetch ...
Ariful Islam's user avatar
0 votes
0 answers
28 views

Is there a way to develop a custom Shopify app that generates a discount code that is only accessible in mobile application? The mobile application is developed using flutter. I was able to configure ...
Qasim Ali's user avatar
  • 607
0 votes
0 answers
25 views

I am contracted to create a referral link Shopify app/extension for a client. And I am completely lost. I will start by giving you what my app needs to be able to do: On the landing page pick up ...
Leon Kardaš's user avatar
2 votes
0 answers
52 views

I'm trying to access the shop.brand.logo field in the Shop resource, I'm using API version 2025-01. https://shopify.dev/docs/api/storefront/2025-01/objects/Brand query ShopData { shop { brand { ...
Marcel Cohen's user avatar
-2 votes
1 answer
76 views

I have integrated Shopify with Rithum (formerly ChannelAdvisor), but I'm experiencing an issue where only some product fields are imported correctly. Specifically, while Name and Description sync ...
Roly89's user avatar
  • 9
0 votes
1 answer
55 views

I don't have a ton of experience with GraphQL, and I'm having trouble finding a straight answer for performing more than one query simultaneously, and whether any GraphQL should support this. My ...
Dustin Oprea's user avatar
  • 10.3k
0 votes
1 answer
100 views

You can easily select a taxonomy category ID via the UI: However, where can you read this ID via the API? I've retrieved the product before and after a category change, and the only thing that ...
Dustin Oprea's user avatar
  • 10.3k
-1 votes
1 answer
79 views

I built a Shopify app using Shopify Billing and encountered an issue at this step. I offer customers a 3-day free trial. If they remove the app during the trial period, their subscription will be ...
Viet Nguyen's user avatar
  • 2,379
0 votes
1 answer
90 views

I am making API requests from an app (public but not listed yet app) installed via the Shopify Partner Dashboard on a development store, and I am encountering an issue where the shippingAddress field ...
Murat ERDOGAN's user avatar
0 votes
0 answers
75 views

export const loader = async ({ request }: LoaderFunctionArgs) => { await authenticate.admin(request); const admin = await authenticate.admin(request); const email = "[email protected]"...
Yaroslav's user avatar
0 votes
0 answers
69 views

I have built a headless Shopify store with Astro, but the only thing I'm missing is the ability to clear my localstorage cart details once the checkout is completed. There's no parameters or anything ...
Jay's user avatar
  • 356
2 votes
1 answer
259 views

Apologies for the long question but I wanted to include all of the various things we've tried. TLDR: for some reasons, no API call lets us access a Shopify store's returns. The same API calls work ...
Jul's user avatar
  • 485
1 vote
0 answers
379 views

I am trying to create a shopify product as well as multiple variants all in the same productCreate mutation. This is the query I have: mutation CreateProductWithOptions($input: ProductInput!) { ...
Zack Tzeng's user avatar
0 votes
1 answer
125 views

I have several web hooks set on Shopify (that use api versione 2024-04). Until yesterday (10 PM), when a webhook was triggered, I receive headers in this format: X-Shopify-Topic Starting from 10PM ...
S-Wing's user avatar
  • 591
0 votes
0 answers
73 views

I am trying to change the filename and the alt attribute of a file using GraphQL, but Shopify responds that the image is pending. This is my Ruby code to update a product with id gid://shopify/...
user1066183's user avatar
  • 2,584
-1 votes
1 answer
251 views

I'm getting the error on shopify customizer that your theme have refused to connect, I dont know what to do, I have just updated the shopify Cli This popup i am getting: This page is not compatible ...
Gufran Afzal's user avatar
0 votes
0 answers
52 views

I am trying to get a webhook's event ID (Event - REST). In the webhook headers I get the following HeadersList { cookies: null, [Symbol(headers map)]: Map(18) { 'accept' => { name: 'accept', ...
harsh panday's user avatar
0 votes
0 answers
34 views

I’m working on a project where I need to validate a list of SKUs (stored in a CSV file) against the SKUs present in my Shopify store. My goal is to determine which SKUs from the CSV file are present ...
N. Adam's user avatar
  • 23
1 vote
0 answers
224 views

I manage multiple Shopify stores and I am developing an app to retrieve Shopify reports. My goal is to ensure that the reports generated match exactly with the ones provided by Shopify. I have already ...
Ibrahim's user avatar
  • 21
3 votes
0 answers
311 views

Since switching to new Customer Accounts sytem, I can't figure out how to access the currently logged in customer in my theme. With the old system, the customer id was accessible via {{ customer.id }} ...
CBrach's user avatar
  • 117
-1 votes
1 answer
135 views

I was trying to get all the customers data from shopify api using following way. But the problem i only get 250 customers data not more than that Though i have 6000+ customers data. What's problem ...
Hola's user avatar
  • 2,231
0 votes
0 answers
153 views

I’m working on a Shopify storefront that supports multiple currencies. My store’s base currency is USD, but customers can view and purchase products in other currencies like INR. Here’s the issue I’m ...
Oline Mazumder's user avatar
0 votes
1 answer
185 views

I’m trying to implement a customer login flow where customers can log in using a one-time 6-digit code sent to their email. I want to know how I can query Shopify’s GraphQL API to handle this ...
Wassef Hassine's user avatar
0 votes
0 answers
32 views

I am struggling with connecting my Shopify Test Store, through the API connection, with my code running on a docker container with the the server running on port 2000 inside Docker on my local machine....
NM123's user avatar
  • 11
2 votes
0 answers
95 views

I am building a Node.js/React Shopify app that needs to update an order's delivery status based on payloads received from an external API's webhook. However, I am facing challenges in handling both ...
beef nachos's user avatar
0 votes
0 answers
48 views

When you set up a form using an app proxy in Shopify, you need to tell the form where to send the data (the action URL). For example: import { redirect } from "@remix-run/node"; import { ...
Mohammad Anas's user avatar
-1 votes
1 answer
588 views

I am trying to fetch customer information from my Shopify store using the REST API and GraphQL API, but I keep encountering errors related to access permissions and authentication. I am using a ...
Dipen Patel's user avatar
0 votes
2 answers
57 views

I’m working on a Shopify project and need to find all the collections associated with a specific product using its Product ID. For example, if "Red T-shirt" is a product that belongs to ...
Oline Mazumder's user avatar
-1 votes
1 answer
168 views

I use cURL, not a github library. I have a next code $query = <<<GRAPHQL mutation InventorySet(\$input: [InventorySetQuantitiesInput!]!) { inventorySetQuantities(...
skiredon's user avatar
0 votes
1 answer
744 views

Did anyone here manage to set the message group id for SQS to be dynamic? We are receiving updates from our Shopify stores through the AWS Eventbridge integrations. Whenever there is a peak in sales ...
user1844599's user avatar
0 votes
1 answer
151 views

I am trying to implement user auth using the Shopify Headless customer account API in an Astro app with auth-astro. I have set up my Shopify store with the Headless app properly, I can log in, ...
Taintedmedialtd's user avatar
0 votes
1 answer
188 views

We required replication of an existing Shopify Custom App. We do not have access to the keys and therefore require rebuild/redefinition of Webhooks Metafields/MetaObjects The ability to re-generate ...
JI-Web's user avatar
  • 565
2 votes
1 answer
100 views

we are adding paymentCustomizations metafields using the Admin GraphQL API for one of our stores. While the data sent in the mutation is successfully retrieved when queried via GraphQL, the Shopify ...
Raghu Chahar's user avatar
  • 1,793
-1 votes
3 answers
448 views

This is the query im using: mutation { inventoryAdjustQuantities(input: { changes: [ { inventoryItemId: "gid://shopify/InventoryItem/...
Juma Russell's user avatar
1 vote
0 answers
238 views

I’m working on a product sync system to upload products from my backend system to Shopify via the Shopify GraphQL API. I can create products with standard metafields, but I’d also like to use category ...
Ben Johns's user avatar
  • 127
1 vote
1 answer
494 views

I have a Shopify function created, as a cart and checkout validation extension. It's attempting to require first name, last name, and phone number input fields. I know there's a native way to do this ...
Alex Zelinsky's user avatar
1 vote
0 answers
131 views

I'm building a headless storefront with Next.js for my Shopify store, using Sanity as the primary content management system. I've set up the Sanity Connect app in Shopify, and it successfully syncs ...
Dave's user avatar
  • 837
1 vote
1 answer
285 views

I’m trying to set up the Appstle Subscription plugin for Shopify, but I can’t figure out how to add a subscription product to the cart. Regular products get added, but the subscription doesn’t. It’s a ...
Kris K's user avatar
  • 13
0 votes
0 answers
85 views

I'm trying to write tests using the @shopify/[email protected] library () I've encountered some strange behavior. For example: When I try to create a product with tags (one tag) and then request all ...
Alex Provorov's user avatar
0 votes
1 answer
207 views

I have a shopify store with thousands of companies which are assigned to staff members. The idea is to retrieve via admin graphql only the companies assigned to a specific staff member. Via the admin ...
Lou Nik's user avatar
  • 125
0 votes
0 answers
284 views

I am creating variants for a Shopify product using productVariantsBulkCreate in the Shopify GraphQL API: mutation productVariantsBulkCreate($productId: ID!, $variants: [ProductVariantsBulkInput!]!) { ...
KoenV's user avatar
  • 29
1 vote
0 answers
111 views

TL;DR Why can newly created product variants be added to the cart but within the cart show a wrong price (i.e. 0.00), only updating to the correct price after a few seconds and a page reload? Details: ...
toasty's user avatar
  • 689
1 vote
0 answers
107 views

I am trying to add more variant options on the Shopify product page, as Shopify only allows up to three options by default. I'm sending extra variant options (which have different prices) from the ...
Basit Sheikh's user avatar
0 votes
1 answer
799 views

I am developing an ecommerce app for a client and I have had trouble with the authentication process for the application, but only on the Android platform as everything already works as expected on ...
Abraham Guerrero's user avatar
1 vote
3 answers
861 views

I am working with Shopify's GraphQL API to paginate through all orders using a cursor-based pagination approach. The query successfully fetches orders in batches, and I can see the correct endCursor ...
Nirmal Sankalana's user avatar

1
2 3 4 5
16