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

https://github.com/tutur17449/graphql_lab


https://github.com/tutur17449/graphql_lab

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

**Get Post**

```
query {
getPost(id: "dnAFVJpauQrmASNsxuPbcH") {
id
title
content
author {
id
name
age
}
}
}
```

**Create Post**

```
mutation {
createPost(postData: {title: "t", content: "t", author: "srzsawudn3TQXKTyJqft74"}) {
id
}
}
```

**Update Post**

```
mutation {
updatePost(id: "dnAFVJpauQrmASNsxuPbcH", postData: {title: "newTitle", content: "newContent"}) {
id
title
content
author {
id
name
}
}
}
```

**Delete Post**

```
mutation {
deletePost(id: "dnAFVJpauQrmASNsxuPbcH") {
id
title
content
author {
id
name
}
}
}
```