GraphQL: Difference between revisions
Jump to navigation
Jump to search
Line 46: | Line 46: | ||
* [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 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://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] | * [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] | |||
|} | |} |
Revision as of 21:37, 28 April 2020
type Project {
name: String
tagline: String
contributors: [User]
}
|
{
project(name: "GraphQL") {
tagline
}
}
|
{
"project": {
"tagline": "A query language for APIs"
}
}
|