mirror of
https://github.com/zhigang1992/graphql-engine.git
synced 2026-04-28 20:15:01 +08:00
601 B
601 B
Setup tables
- Create table:
notes:
id: int
note: text
Setup AWS Lambda
Create a lambda function in AWS. This will be our webhook.
- Create a function.
- Select Python 3.6 as the runtime.
- Select "start from scratch".
- Add API gateway as a trigger.
- Add an API to API gateway.
- Add the code in
echo.py. The handler function of your lambda will be theecho.lambda_handler.
Add the trigger in Hasura GraphQL
- In events tab, add a trigger
- Select all insert, update, delete operations for the trigger.
- Paste the API endpoint of your AWS lambda as the webhook.