https://github.com/tiendq/saleor-abandoned-checkouts
https://github.com/tiendq/saleor-abandoned-checkouts
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tiendq/saleor-abandoned-checkouts
- Owner: tiendq
- License: other
- Created: 2023-01-11T15:09:04.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-16T10:17:12.000Z (about 2 years ago)
- Last Synced: 2025-01-12T16:21:56.762Z (5 months ago)
- Language: TypeScript
- Size: 165 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# 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
```graphql
mutation CheckoutCreate {
checkoutCreate(
input: {
channel: "default-channel"
email: "[email protected]"
lines: []
}
) {
checkout {
token
}
errors {
field
code
}
}
}
```