Documentation ¶
Overview ¶
Package gql is responsible for lexing and parsing a GraphQL query/mutation.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type FilterTree ¶ added in v0.7.0
type FilterTree struct { Op string Func *Function Child []*FilterTree }
FilterTree is the result of parsing the filter directive.
type Function ¶ added in v0.7.0
type Function struct { Attr string Name string // Specifies the name of the function. Args []string // Contains the arguments of the function. }
Function holds the information about gql functions.
type GraphQuery ¶
type GraphQuery struct { UID uint64 XID string Attr string Alias string Func *Function Args map[string]string Children []*GraphQuery Filter *FilterTree // contains filtered or unexported fields }
GraphQuery stores the parsed Query in a tree format. This gets converted to internally used query.SubGraph before processing the query.
func (*GraphQuery) DebugPrint ¶ added in v0.7.0
func (gq *GraphQuery) DebugPrint(prefix string)
DebugPrint is useful for debugging.
Click to show internal directories.
Click to hide internal directories.