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

parenSpacing

Control whether whitespace should be inserted between parentheses or not.

Default option is false.

This global option can be overridden by different syntax nodes:

  • arguments.parenSpacing
  • argumentsDefinition.parenSpacing
  • variableDefinitions.parenSpacing

Example for false

query Query($a: A) @directive(key: "value") { field }

Example for true

query Query( $a: A ) @directive( key: "value" ) { field }