Back to Prettier

Input

changelog_unreleased/graphql/19422.md

3.9.0315 B
Original Source

Fix crash with comment only list value (#19422 by @fisker)

<!-- prettier-ignore -->
gql
# Input
query {
  a(x: [
    # only comment
  ])
}

# Prettier stable
Error: Comment "only comment" was not printed. Please report this error!

# Prettier main
query {
  a(
    x: [
      # only comment
    ]
  )
}