GraphQL: Difference between revisions
Jump to navigation
Jump to search
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://medium.com/@oleg.ilyenko/graphql-namespaces-proposal-2a097ce81d2a GraphQL Namespaces Proposal] | |||
* [https://stackoverflow.com/questions/28902374 Spring Boot Exception Handling] | * [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] |
Revision as of 10:12, 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"
}
}
|