Skip to content

Commit 500e0ca

Browse files
committed
Update generated GraphQL schema
1 parent 3513b4b commit 500e0ca

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

frontend/schema.graphql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2463,11 +2463,23 @@ Represents the current viewer's session
24632463
"""
24642464
union ViewerSession = BrowserSession | Oauth2Session | Anonymous
24652465

2466+
"""
2467+
Marks an element of a GraphQL schema as no longer supported.
2468+
"""
24662469
directive @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+
"""
24692475
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+
"""
24702479
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+
"""
24712483
directive @specifiedBy(url: String!) on SCALAR
24722484
schema {
24732485
query: Query

0 commit comments

Comments
 (0)