跳到内容

特性

语法,关键字,和其它语言特性。

使用情况概览

自定义数据

这张图根据分类划分,显示了各种特性的采用率。

在图中, 外圈的尺寸代表了了解这个特性的用户数量, 内圈的尺寸代表了实际使用这个特性的用户数量。

鼠标悬浮在每个节点上, 可以查看详细数据。

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
    }
}

Security & Performance

自定义数据

Other Features

自定义数据
印象模糊
有听说过
用过

知识得分

自定义数据
在调查中提到的所有特性中,受访者知道多少?