Versions in this module Expand all Collapse all v2 v2.0.2 Jan 29, 2024 v2.0.1 Jan 29, 2024 Changes in this version + func ParseGraphqlDocumentBytes(input []byte) (ast.Document, operationreport.Report) + func ParseGraphqlDocumentString(input string) (ast.Document, operationreport.Report) + type ErrUnexpectedIdentKey struct + func (e ErrUnexpectedIdentKey) Error() string + type ErrUnexpectedToken struct + func (e ErrUnexpectedToken) Error() string + type Parser struct + func NewParser() *Parser + func (p *Parser) Parse(document *ast.Document, report *operationreport.Report) + func (p *Parser) ParseType() (ref int) + func (p *Parser) ParseValue() (value ast.Value) + func (p *Parser) PrepareImport(document *ast.Document, report *operationreport.Report) + type Tokenizer struct + func NewTokenizer() *Tokenizer + func (t *Tokenizer) Peek() token.Token + func (t *Tokenizer) Read() token.Token + func (t *Tokenizer) Tokenize(input *ast.Input)