Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

braceSpacing

Control whether whitespace should be inserted between braces or not.

Default option is true.

This global option can be overridden by different syntax nodes:

  • enumValuesDefinition.braceSpacing
  • fieldsDefinition.braceSpacing
  • inputFieldsDefinition.braceSpacing
  • objectValue.braceSpacing
  • schemaDefinition.braceSpacing
  • schemaExtension.braceSpacing
  • selectionSet.braceSpacing

Example for false

query Query($object: Any = {key: "value"}) { field }

Example for true

query Query($object: Any = { key: "value" }) { field }