GraphQL: Difference between revisions

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


==References==
==References==
* [https://graphql.org/learn/ Learn GraphQL]
* [https://github.com/graphql/graphiql GraphiQL]
* [https://github.com/graphql/graphiql GraphiQL]
* [https://graphql.org/ GraphQL]
* [https://graphql.org/ GraphQL]

Revision as of 04:44, 28 April 2020

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

References