File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -2463,11 +2463,23 @@ Represents the current viewer's session
24632463"""
24642464union ViewerSession = BrowserSession | Oauth2Session | Anonymous
24652465
2466+ """
2467+ Marks an element of a GraphQL schema as no longer supported.
2468+ """
24662469directive @deprecated (
24672470 reason : String = " No longer supported"
24682471) on FIELD_DEFINITION | ARGUMENT_DEFINITION | INPUT_FIELD_DEFINITION | ENUM_VALUE
2472+ """
2473+ Directs the executor to include this field or fragment only when the `if` argument is true.
2474+ """
24692475directive @include (if : Boolean ! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
2476+ """
2477+ Directs the executor to skip this field or fragment when the `if` argument is true.
2478+ """
24702479directive @skip (if : Boolean ! ) on FIELD | FRAGMENT_SPREAD | INLINE_FRAGMENT
2480+ """
2481+ Provides a scalar specification URL for specifying the behavior of custom scalar types.
2482+ """
24712483directive @specifiedBy (url : String ! ) on SCALAR
24722484schema {
24732485 query : Query
You can’t perform that action at this time.
0 commit comments