GraphQL: Difference between revisions

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


==References==
==References==
* [https://medium.com/supercharges-mobile-product-guide/graphql-server-using-spring-boot-part-i-722bdd715779 GraphQL server using Spring Boot, Part I]
* [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 07:10, 28 April 2020

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

References