An open API service indexing awesome lists of open source software.

https://github.com/codedbystuart/hasuraactions

Hasura Graphql custom business logic (Actions)
https://github.com/codedbystuart/hasuraactions

Last synced: about 1 month ago
JSON representation

Hasura Graphql custom business logic (Actions)

Awesome Lists containing this project

README

          

# Hasura Actions to make Payments (Nodejs and Express)

This is a starter kit for `nodejs` with `express`. To get started:

Firstly, [download the starter-kit](https://github.com/hasura/codegen-assets/raw/master/nodejs-express/nodejs-express.zip) and `cd` into it.

```
npm ci
npm start
```

## Development

The entrypoint for the server lives in `src/server.js`.

If you wish to add a new route (say `/greet`) , you can add it directly in the `server.js` as:

```js
app.post('/greet', (req, res) => {
return res.json({
"greeting": "have a nice day"
});
});
```

### Throwing errors

You can throw an error object or a list of error objects from your handler. The response must be 4xx and the error object must have a string field called `message`.

```js
retun res.status(400).json({
message: 'invalid email'
});
```