رفتن مستقیم به محتوا

امکانات

سینتکس، کلمات کلیدی، و دیگر امکانات زبان.

Usage Overview

Customize Data

This chart presents the various adoption rates for all features, grouped by category.

The size of the outer circle corresponds to the total number of users who know about a feature, while the inner one represents those who have actually used it.

Hover on each node to view detailed data along with an overlay representing the total number of survey respondents.

Language
Directives
Security & Performance
Other Features

Language

Customize Data
تابحال نشنیدم
دربارش میدونم
ازش استفاده کردم

Directives

Customize Data
تابحال نشنیدم
دربارش میدونم
ازش استفاده کردم
@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

Customize Data
تابحال نشنیدم
دربارش میدونم
ازش استفاده کردم

Other Features

Customize Data
تابحال نشنیدم
دربارش میدونم
ازش استفاده کردم

Knowledge Score

Customize Data
Out of all the features mentioned in the survey, how many did the respondent know about?