Back to Prettier

Input

changelog_unreleased/graphql/19171.md

3.9.0438 B
Original Source

Support "directives on directive definitions" (#19171 by @YBJ0000)

Directives on directive definitions (and extend directive extensions) are now supported.

<!-- prettier-ignore -->
gql
# Input
directive @a @b on QUERY
extend directive @a @b

# Prettier stable
Error: Syntax Error: Expected "on", found "@".

# Prettier main
directive @a @b on QUERY
extend directive @a @b