Skip to content

Commit 3207d23

Browse files
authored
build(deps): bump async-graphql from 7.0.16 to 7.0.17 (#4621)
2 parents f5911d2 + 500e0ca commit 3207d23

File tree

3 files changed

+21
-9
lines changed

3 files changed

+21
-9
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ version = "1.7.1"
6868

6969
# GraphQL server
7070
[workspace.dependencies.async-graphql]
71-
version = "7.0.16"
71+
version = "7.0.17"
7272
default-features = false
7373
features = ["chrono", "url", "tracing", "playground"]
7474

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)