GraphQL: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 30: Line 30:


==References==
==References==
* [https://stackoverflow.com/questions/45959234 Authentication in Spring Boot using GraphQL]
* [https://medium.com/@shitalkumarchivate/securing-graphql-api-with-spring-security-8c232de2804d Securing GraphQL API with Spring Security]
* [https://medium.com/supercharges-mobile-product-guide/graphql-server-using-spring-boot-part-i-722bdd715779 GraphQL server using Spring Boot, Part I]
* [https://medium.com/supercharges-mobile-product-guide/graphql-server-using-spring-boot-part-i-722bdd715779 GraphQL server using Spring Boot, Part I]
* [https://www.howtographql.com/graphql-java/5-authentication/ GraphQL Authentication]
* [https://github.com/team-supercharge/spring-boot-graphql-tutorial Spring Boot GraphQL]
* [https://github.com/team-supercharge/spring-boot-graphql-tutorial Spring Boot GraphQL]
* [https://graphql.org/learn/ Learn GraphQL]
* [https://graphql.org/learn/ Learn GraphQL]

Revision as of 08:11, 28 April 2020

type Project {
  name: String
  tagline: String
  contributors: [User]
}
{
  project(name: "GraphQL") {
    tagline
  }
}
{
  "project": {
    "tagline": "A query language for APIs"
  }
}

References