GraphQL

From Chorke Wiki
Revision as of 04:32, 28 April 2020 by Shahed (talk | contribs) (Created page with "{| | valign="top" | <source lang="json"> type Project { name: String tagline: String contributors: [User] } </source> | valign="top" | <source lang="json"> { project(...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
type Project {
  name: String
  tagline: String
  contributors: [User]
}
{
  project(name: "GraphQL") {
    tagline
  }
}
{
  "project": {
    "tagline": "A query language for APIs"
  }
}


References