graphql.github.io icon indicating copy to clipboard operation
graphql.github.io copied to clipboard

community/tools-and-libraries: GraphQL formatter

Open 3052 opened this issue 1 year ago • 2 comments

I am looking for a GraphQL formatter:

https://wikipedia.org/wiki/Prettyprint

I dont see one here:

https://graphql.org/community/tools-and-libraries

I found some online, but they are all pretty terrible:

https://jsonformatter.org/graphql-formatter

no option to change indent for example

3052 avatar Oct 23 '24 23:10 3052

ah found one

https://prettier.io/playground

3052 avatar Oct 24 '24 00:10 3052

prettier is the formatter I use. You can also use print(parse(document)) using import { print, parse } from 'graphql' in JS, though it does not to text wrapping/etc.

benjie avatar Oct 24 '24 11:10 benjie