GraphQL: Difference between revisions
Jump to navigation
Jump to search
Line 48: | Line 48: | ||
* [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] | ||
* [https://github.com/graphql-java-kickstart/graphql-spring-boot#enable-graphql-servlet Enable GraphQL Servlet] | |||
|} | |} |
Revision as of 21:14, 28 April 2020
type Project {
name: String
tagline: String
contributors: [User]
}
|
{
project(name: "GraphQL") {
tagline
}
}
|
{
"project": {
"tagline": "A query language for APIs"
}
}
|