https://github.com/thales-eduardo/crud-graphql
mongodb + mongoose + graphql + apollo-server
https://github.com/thales-eduardo/crud-graphql
apollo-server graphql mongodb mongoose
Last synced: 7 months ago
JSON representation
mongodb + mongoose + graphql + apollo-server
- Host: GitHub
- URL: https://github.com/thales-eduardo/crud-graphql
- Owner: Thales-Eduardo
- License: mit
- Created: 2021-09-25T13:51:36.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-09-25T17:49:24.000Z (about 4 years ago)
- Last Synced: 2025-02-01T09:28:46.528Z (8 months ago)
- Topics: apollo-server, graphql, mongodb, mongoose
- Language: JavaScript
- Homepage:
- Size: 71.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crud GraphQL
Para rodar o projeto tem que ter o `docker` instalado na sua maquina.
- Para subir os contêineres.
> docker-compose up -d
- Para deletar os contêineres.
> docker-compose down
---
**MUTATION**
```graphql
mutation {
createUser(
data: {
firstName: "Thales"
lastName: "Eduardo"
email: "thalesdev22@gmail.com"
active: true
}
) {
_id
firstName
}
}mutation {
updateUser(
data: {
firstName: "Thales22"
lastName: "Eduardo"
email: "thalesdev22@gmail.com"
active: true
}
) {
fullname
}
}mutation {
deleteUser(id: "614f5dbb4002d60861064c3d")
}# Post
mutation {
createPost(
data: {
title: "título"
content: "Conteudo"
author: "614f5dbb4002d60861064c3d"
}
) {
_id
author {
fullname
}
}
}mutation {
updatePost(
data: {
title: "título1"
content: "Conteudo"
author: "614f5dbb4002d60861064c3d"
}
) {
_id
title
author {
fullname
}
}
}mutation {
deletePost(id: "614f5e0a4002d60861064c45")
}
```**Query**
```gql
query {
users {
_id
fullname
}
}query {
user(id: "614f5dbb4002d60861064c3d") {
fullname
}
}# Post
query {
posts {
title
author {
fullname
}
}
}query {
post(id: "614f5e4b4002d60861064c4f") {
title
content
}
}
```