tiendq / saleor-abandoned-checkouts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Abandoned Checkouts

About

This app displays data about checkouts that for some reason haven't been turned into orders.

Development

pnpm dev

To embed it in your Dashboard hosted on Saleor Cloud, you need to make your environment public.

saleor app tunnel 3000

Your local application should be available now to the outside world (Saleor instance) for accepting all the events via webhooks.

Test

mutation CheckoutCreate {
  checkoutCreate(
    input: {
      channel: "default-channel"
      email: "myname@example.com"
      lines: []
    }
  ) {
    checkout {
      token
    }
    errors {
      field
      code
    }
  }
}

About

License:Other


Languages

Language:TypeScript 94.0%Language:CSS 4.9%Language:JavaScript 0.8%Language:Shell 0.3%