graphql.github.io
graphql.github.io copied to clipboard
community/tools-and-libraries: GraphQL formatter
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
ah found one
https://prettier.io/playground
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.