GraphQL: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 48: | Line 48: | ||
| valign="top" | | | valign="top" | | ||
* [https://stackoverflow.com/questions/45959234 Authentication in Spring Boot using GraphQL] | * [https://stackoverflow.com/questions/45959234 Authentication in Spring Boot using GraphQL] | ||
* [https://stackoverflow.com/questions/28902374 Spring Boot Exception Handling] | |||
* [https://stackoverflow.com/questions/54637757 Set a base for the API Endpoint] | * [https://stackoverflow.com/questions/54637757 Set a base for the API Endpoint] | ||
* [https://github.com/merapar/graphql-spring-boot-starter GraphQL Spring boot starter] | * [https://github.com/merapar/graphql-spring-boot-starter GraphQL Spring boot starter] |
Revision as of 06:25, 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"
}
}
|