GraphQL: Difference between revisions
Jump to navigation
Jump to search
Line 56: | Line 56: | ||
* [https://github.com/graphql-java-kickstart/graphql-spring-boot#enable-graphql-servlet Enable GraphQL Servlet] | * [https://github.com/graphql-java-kickstart/graphql-spring-boot#enable-graphql-servlet Enable GraphQL Servlet] | ||
* [https://github.com/graphql-java-kickstart/graphql-spring-boot GraphQL Java Kikstart] | * [https://github.com/graphql-java-kickstart/graphql-spring-boot GraphQL Java Kikstart] | ||
* [https://www.baeldung.com/spring-boot-actuators Spring Boot Actuator] | |||
| valign="top" | | |||
|} | |} |
Revision as of 10:45, 29 April 2020
Schema type Project {
name: String
tagline: String
contributors: [User]
}
|
Query {
project(name: "GraphQL") {
tagline
}
}
|
Results {
"project": {
"tagline": "A query language for APIs"
}
}
|