No content to show
User Activity
06-16-2024
Just realized that I can simply use the pure ID of `gid://shopify/OrderIdentity/5881974834746`, i.e., `5881974834746` and use it in a GraphQL query as `Order`. Like this:query getOrder {
node(id: "gid://shopify/Order/5881974834746") {
id
.....
06-16-2024
I managed to do this:import { OrderConfirmationApi } from '@shopify/ui-extensions/checkout';
import { useApi } from '@shopify/ui-extensions-react/checkout';
// ...
const { lines, shop } = useApi();
const { orderConfirmation } = useApi() as OrderCon...
That was missing in my case. Fetching stuff from an external backend worked after I set this.Thanks a lot!
That's correct. I used the GraphQL API to update the metaobject. In my Typescript code, the mutation and the variables part look like this:const mutation = (key: string): string => `
mutation UpdateMetaobject($id: ID!, $metaobject: MetaobjectUpdateIn...
Ping
I have issues when switching the country in combination with language subfolders: Assume I have Canada (CA) as currently selected country and French as language. Then my URL looks like this: https://my-shop.myshopify.com/fr, and in the background the...
I have issues with the URL parameter for countries, too. This seems to be in combination with language subfolders: Assume I have Canada (CA) as currently selected country and French as language. Then my URL looks like this: https://my-shop.myshopify....
Would be good to at least get an information about whether or not Shopify is planning to enhance the app accordingly.
I finally found a good summary about what has to be done. It's really not just one or two steps.
I had the same problem with the access to metaobjects. For those who have difficulties understanding the official documentation (like me )The point is that you're looking at the wrong place: The definition for what your app is allowed to do is defi...
09-08-2023
Hi @postprodigy,I am very much interested and would love to see such a template!Actually, all I am trying to achieve is to run a server with a REST API in a container. My Shopify is a custom app, so things should even be easier compared to public app...
That helped me a lot, although the partner UI has changed a bit. Meanwhile, these are the steps you need to follow:Go to https://partners.shopify.com.Navigate to `Apps`.Select your application.Navigate to `Extensions`.Find the card that says 'Develop...
I still would love to get an answer here.
08-18-2023
I am using Typescript and the GraphQL admin API in a Node.js application to create a metaobject definition and to create metaobjects of that definition. That works very well in general, except for images. This is the field definition part that I use ...
Have you ever been able to get this up and running?I am very much interested in exactly what you are describing: Theme app extension in Typescript, ideally with the possibility to use external libraries.
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
3009 | 12-19-2023 04:17 AM |