No content to show

User Activity

Hi everyone,I'm working on a Shopify app and using the Admin GraphQL API to fetch customers based on dynamic filters. My current query looks like this:query getCustomers($query: String) {customers(first: 50, query: $query) {edges {node {idemailfirstN...
Hi everyone,I'm developing a Shopify app using @Shopify/shopify-app-express and I'm using a custom MySQL session storage by implementing SessionStorage and passing it as sessionStorage in the shopifyApp config.Here's a summary of my setup:Framework: ...
Hi everyone,I’m building a Shopify embedded app using React and App Bridge. Everything works fine when the app is accessed through the Shopify Admin. However, when I access the app directly via a live URL like:https://dm.starkiu.com/I get the followi...
 How to correctly use discountAutomaticBasicCreate mutation for applying discounts to all items, specific products, or collections?I tried using this input for selected products:items: {products: [{ id: "gid://shopify/ProductVariant/1234567890" },{ i...
app.post("/api/create-discount", async (req, res) => {  try {    const session = res.locals.shopify.session;    const discountData = await createDiscount(session, req.body);    if (discountData.error) {      return res.status(400).json(discountData.e...
This widget could not be displayed.
This widget could not be displayed.
Helpful From