GraphQL: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 36: Line 36:
* [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]
* [https://www.howtographql.com/basics/2-core-concepts/ Core Concepts]
* [https://graphql.org/swapi-graphql GraphiQL IDE]
* [https://graphql.org/swapi-graphql GraphiQL IDE]
* [https://github.com/graphql/graphiql GraphiQL]
* [https://github.com/graphql/graphiql GraphiQL]
* [https://graphql.org/ GraphQL]
* [https://graphql.org/ GraphQL]

Revision as of 08:33, 28 April 2020

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

References