GraphQL: Difference between revisions
Jump to navigation
Jump to search
Line 45: | Line 45: | ||
| 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/54637757 Set a base url for GraphQL Endpoint] | |||
* [https://spectrum.chat/graphql-java Spectrum GraphQL Java] | * [https://spectrum.chat/graphql-java Spectrum GraphQL Java] | ||
* [https://www.howtographql.com/graphql-java/5-authentication/ GraphQL Authentication] | * [https://www.howtographql.com/graphql-java/5-authentication/ GraphQL Authentication] | ||
|} | |} |
Revision as of 21:03, 28 April 2020
type Project {
name: String
tagline: String
contributors: [User]
}
|
{
project(name: "GraphQL") {
tagline
}
}
|
{
"project": {
"tagline": "A query language for APIs"
}
}
|