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
2463
2463
"""
2464
2464
union ViewerSession = BrowserSession | Oauth2Session | Anonymous
2465
2465
2466
+ """
2467
+ Marks an element of a GraphQL schema as no longer supported.
2468
+ """
2466
2469
directive @deprecated (
2467
2470
reason : String = " No longer supported"
2468
2471
) 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
+ """
2469
2475
directive @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
+ """
2470
2479
directive @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
+ """
2471
2483
directive @specifiedBy (url : String ! ) on SCALAR
2472
2484
schema {
2473
2485
query : Query
You can’t perform that action at this time.
0 commit comments