Files
react-tutorial/docs/graphql.md
2017-04-09 10:10:41 +08:00

518 B

GraphQL的用法

GraphQL是一种全新的数据查询语句的写法。

简介

我们希望取回下面的数据。

{
  "id": "c49bc1e1-26c1-49c5-b9c5-c89e24be0ac4",
  "url": "https://pics.example.com/dog",
  "caption": "My Dog",
  "author": {
    "id": "5a0cba48-c014-4cf0-b6fb-0bf7514b8165",
    "name": "Alice"
  }
}

GraphQL就可以写成下面的样子。

node(id: "c49bc1e1-26c1-49c5-b9c5-c89e24be0ac4") {
  id,
  url,
  caption,
  author {
    id,
    name
  }
}