mirror of
https://github.com/graphql-hive/console
synced 2026-04-26 17:07:17 +00:00
20 lines
361 B
Markdown
20 lines
361 B
Markdown
|
|
# Workflow Service
|
||
|
|
|
||
|
|
Services for running asynchronous tasks and cron jobs. E.g. sending email, webhooks or other
|
||
|
|
maintenance/clen up tasks.
|
||
|
|
|
||
|
|
## Structure
|
||
|
|
|
||
|
|
```
|
||
|
|
# Definition of Webook Payload Models using zod
|
||
|
|
src/webhooks/*
|
||
|
|
# Task Definitions
|
||
|
|
src/tasks/*
|
||
|
|
# General lib
|
||
|
|
src/lib/*
|
||
|
|
```
|
||
|
|
|
||
|
|
## References
|
||
|
|
|
||
|
|
- [Graphile Worker Documentation](https://worker.graphile.org/)
|