Skip to content

Commit

Permalink
Fix minor error in schema#schema-transformations (#2517)
Browse files Browse the repository at this point in the history
  • Loading branch information
lervag authored Jan 16, 2025
1 parent 67d5f18 commit 3d52242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vuepress/docs/docs/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ For that, simply use the `GraphQL#transform` method and provide one of the possi

In the following example, we can expose 2 different APIs created from the same schema: the v1 API will not expose the `nicknames` field of the `Character` type.
```scala
case class Beta() extends GQLDirective("beta")
case class Beta() extends GQLDirective(Directive("beta"))
case class Queries(character: Character)

case class Character(
Expand Down

0 comments on commit 3d52242

Please sign in to comment.