No content to show
User Activity
If you have code like this: useEffect(() => {
if (showMessage) {
shopify.toast.show('message');
setShowMessage(false);
}
}, [setShowMessage, showMessage, shopify.toast]); Change it to this: useEffect(() => {
if (showMessage) {
shop...
I figured out a work around myself. For now, I'm going to replace commas programatically with a suitable unicode character.myTagsString.replace(/,/g, '\u201a'); \u201a is the "low single comma quotation mark", which looks just like a comma.
I just ran into this while creating tags with the Shopify GraphQL api. Per the tagsAdd api documentation: A list of tags to add to the resource. Can be an array of strings or a single string composed of a comma-separated list of values. Example value...
05-13-2024
I created a metafield definition via graphql, then added the metafield with the value "ABCD" to several products. When I run this, I don't get any matches: query {
products(first: 10, sortKey: TITLE, query: "metafield:'custom.mymetafield':'ABCD'")...
04-06-2024
Hi, This is an in-progress Polaris IndexTable product page in my Shopify app extension (built with the remix template): In each row, I have a primary data link to the `shopify:admin/products/<id>` product details page, which works great: ...