Uses of Class
graphql.parser.ParserOptions
Packages that use ParserOptions
-
Uses of ParserOptions in graphql.parser
Methods in graphql.parser that return ParserOptionsModifier and TypeMethodDescriptionParserOptions.Builder.build()static ParserOptionsParserOptions.getDefaultOperationParserOptions()By default, for operation parsing, the Parser will not capture ignored characters, and it will not capture line comments into AST elements .static ParserOptionsParserOptions.getDefaultParserOptions()By default, the Parser will not capture ignored characters.static ParserOptionsParserOptions.getDefaultSdlParserOptions()By default, for SDL parsing, the Parser will not capture ignored characters, but it will capture line comments into AST elements.GraphqlAntlrToLanguage.getParserOptions()ParserEnvironment.getParserOptions()ParserOptions.transform(Consumer<ParserOptions.Builder> builderConsumer) Methods in graphql.parser with parameters of type ParserOptionsModifier and TypeMethodDescriptionParser.parseDocument(Reader reader, ParserOptions parserOptions) Deprecated.Parser.parseDocument(String input, ParserOptions parserOptions) Deprecated.use {#Parser.parse(ParserEnvironment)} insteadParserEnvironment.Builder.parserOptions(ParserOptions parserOptions) static voidParserOptions.setDefaultOperationParserOptions(ParserOptions options) By default, the Parser will not capture ignored characters or line comments.static voidParserOptions.setDefaultParserOptions(ParserOptions options) By default, the Parser will not capture ignored characters.static voidParserOptions.setDefaultSdlParserOptions(ParserOptions options) By default, for SDL parsing, the Parser will not capture ignored characters, but it will capture line comments into AST elements .Constructors in graphql.parser with parameters of type ParserOptionsModifierConstructorDescriptionGraphqlAntlrToLanguage(org.antlr.v4.runtime.CommonTokenStream tokens, MultiSourceReader multiSourceReader, ParserOptions parserOptions, I18n i18N, @Nullable Map<Node<?>, org.antlr.v4.runtime.ParserRuleContext> nodeToRuleMap) -
Uses of ParserOptions in graphql.schema.idl
Methods in graphql.schema.idl with parameters of type ParserOptionsModifier and TypeMethodDescriptionSchemaParser.parse(Reader reader, ParserOptions parserOptions) Parse a reader of schema definitions and create aTypeDefinitionRegistry
Parser.parse(ParserEnvironment)} instead