GraphQL

https://ja.wikipedia.org/wiki/GraphQL
GraphQLはWebAPIなど取得するデータを指定するためのクエリ言語。

【クエリ】
{
tomorrow {
weather
rainyPercent
}
}

【結果】
{
"tomorrow": {
"weather": "cloudy",
"rainyPercent": 30
}
}