语法,关键字,和其它语言特性。
链接到某一部分使用情况概览
自定义数据
这张图根据分类划分,显示了各种特性的采用率。
在图中, 外圈的尺寸代表了了解这个特性的用户数量, 内圈的尺寸代表了实际使用这个特性的用户数量。
鼠标悬浮在每个节点上, 可以查看详细数据。
Language | |
Directives | |
Security & Performance | |
Other Features |
链接到某一部分Language
自定义数据
链接到某一部分Directives
自定义数据
印象模糊 | |
有听说过 | |
用过 |
- @skip查看代码示例
graphql
query ($skipTitle: Boolean!) { queryPost { id title @skip(if: $skipTitle) text } }
- @include查看代码示例
graphql
query ($includeAuthor: Boolean!) { queryPost { id title text author @include(if: $includeAuthor) { id name } } }
- @deprecated查看代码示例
graphql
type MyType { id: ID! oldField: String @deprecated(reason: "oldField is deprecated. Use newField instead.") newField: String deprecatedField: String @deprecated }
- @specifiedBy查看代码示例
graphql
scalar UUID @specifiedBy(url: "https://tools.ietf.org/html/rfc4122")
- @defer查看代码示例
graphql
query { person(id: "cGVvcGxlOjE=") { name ...HomeworldFragment @defer(label: "homeworldDefer") }
- @stream查看代码示例
graphql
query { person(id: "cGVvcGxlOjE=") { name films @stream(initialCount: 2, label: "filmsStream") { title } }
链接到某一部分Other Features
链接到某一部分知识得分
自定义数据
在调查中提到的所有特性中,受访者知道多少?