Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ertrzyiks/golden-recipes-api
https://github.com/ertrzyiks/golden-recipes-api
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ertrzyiks/golden-recipes-api
- Owner: ertrzyiks
- Created: 2019-01-26T19:06:36.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-31T20:57:34.000Z (almost 6 years ago)
- Last Synced: 2024-12-07T19:35:56.998Z (about 1 month ago)
- Language: JavaScript
- Homepage: http://golden-recipes-api.ertrzyiks.me
- Size: 81.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Golden recipes API
## GraphQL
#### Create recipe
```
mutation CreateRecipe($name: String, $ingredients: [String]!, $directions: [String]!) {
addRecipe(name: $name, ingredients: $ingredients, directions: $directions) { name }
}
```## Rest
#### Create recipe
```
POST /recipes
``````
{
"name": String,
"ingredients": [String],
"directions": [String]
}
```