java-tutorials/spring-boot-modules/spring-boot-graphql
rcalago ddb4061e1a
Update README.md
2024-03-09 06:13:46 +08:00
..
src JAVA-31576 Upgrade io.grpc to latest version (#16020) 2024-03-06 00:04:36 +01:00
GraphQL collection.postman_collection.json [JAVA-14663] Update Graphql code for Boot 2.7.x changes and move to new module (#12729) 2022-10-07 22:51:41 +05:30
README.md Update README.md 2024-03-09 06:13:46 +08:00
pom.xml JAVA-31576 Upgrade io.grpc to latest version (#16020) 2024-03-06 00:04:36 +01:00

README.md

Spring Boot Graphql

This module contains articles about Spring Boot Graphql

The Course

The "REST With Spring" Classes: http://bit.ly/restwithspring

Relevant Articles:

GraphQL sample queries

Query

curl \
--request POST 'localhost:8080/graphql' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"query {\n    recentPosts(count: 2, offset: 0) {\n        id\n        title\n        author {\n            id\n            posts {\n                id\n            }\n        }\n    }\n}"}'

Mutation

curl \
--request POST 'localhost:8080/graphql' \
--header 'Content-Type: application/json' \
--data-raw '{"query":"mutation {\n    createPost(title: \"New Title\", authorId: \"Author2\", text: \"New Text\") {\n id\n       category\n        author {\n            id\n            name\n        }\n    }\n}"}'