https://github.com/tutur17449/graphql_lab
https://github.com/tutur17449/graphql_lab
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tutur17449/graphql_lab
- Owner: tutur17449
- Created: 2021-08-09T15:36:35.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T11:47:50.000Z (over 3 years ago)
- Last Synced: 2025-01-28T18:20:31.190Z (4 months ago)
- Language: JavaScript
- Size: 67.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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
}
}
}
```