跳至內容

功能

語法、關鍵字以及其他語言功能。

使用程度概要

自訂資料
這張圖表顯示所有功能個別的採用程度,以分類來區別。外圍圓圈的大小代表知道某功能的使用者總數,而內圈代表實際在使用的人數。將滑鼠移到節點上,就可以看到詳細資料,還有代表此問卷答題者總數的區塊
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

自訂資料
從未聽過
知道是什麼
已經有用過

知道功能的分數

自訂資料
答題者知道多少問卷中提及的功能?