Tag: shopify-app
-
Malformed Cursor (shopify graphql api query)
0 I am trying to fetch collections (paginated) from my shopify store using graphql query, i have written this route: async function (req: CustomRequest, res: Response) { const shopUrl: string = req.shopUrl || “”; const accessToken: string = req.accessToken || “”; let { count, after }: any = req.query; const params = new URLSearchParams(); if(!count){…
-
How to create Shopify Order Discount App? [closed]
-4 Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 51 mins ago. Improve this question I am trying to create a Shopify order discount app. I have installed the…
-
Graphql Shopify | Query articles with its metafields
1 Has anyone done a query for Articles that have metafields? I can query the articles with its title, otherfields etc, but by default Shopify won’t return the articles metafields in this call. These metafields for these articles have been created by an app. My first goal would be trying to call all articles and…
-
How to check active Shopify stores subscriptions using GraphQL and API?
0 I have a Shopify application that is installed on multiple Shopify stores, and I need to programmatically check which stores have an active subscription plan using the Shopify API and GraphQL. I want to perform the following tasks: Retrieve a list of all the Shopify stores that have installed my application. For each store…
-
Why i can get the next product list when i click the next button, i am using the pagination of graphql in shopify with laravel app
0 This is my query(This is working query but static because i already put the cursor id/value to the after:"") but when i put the $cursor my pagination is not working. I need to get the next product list on the same page that’s why i use AJAX but i dont know why it’s not…
-
Shopify App Image File Upload Through GraphQL API – Processing Error
0 I’m working on a shopify app using node js and react with graphql. Here is what I’m trying to achieve, the client when using my Shopify app has a dropzone where he can upload images, I’m trying to save those images to the files in his store, I keep getting the processor error when…
-
Shopify Payment app graphQL endpoint authentication
-1 I am trying to create an offsite shopify payment app. Overall the authentication on GraphQL requests seems kinda confusing to me. Should there be any authentication token for graphQL request like PaymentSessionResolve. This question might not be appropriate for stackoverflow but I am kinda stuck. javascript node.js graphql shopify shopify-app Share Follow asked 1…