Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ertrzyiks/golden-recipes-api


https://github.com/ertrzyiks/golden-recipes-api

Last synced: about 1 month ago
JSON representation

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]
}
```