Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Parser ¶
type Parser struct {
// contains filtered or unexported fields
}
func (*Parser) ParseQuery ¶
type Query ¶
func (*Query) ToSearchRequest ¶
func (q *Query) ToSearchRequest() *openapi.SearchRequest
ToSearchRequest converts an AQL Query to an openapi.SearchRequest
type TokenType ¶
type TokenType int
const ( TOKEN_ILLEGAL TokenType = iota TOKEN_EOF TOKEN_IDENT TOKEN_EQUALS TOKEN_LESS TOKEN_GREATER TOKEN_PREFIX TOKEN_LPAREN TOKEN_RPAREN TOKEN_LBRACE TOKEN_RBRACE TOKEN_STRING TOKEN_COMMA TOKEN_PARAM // New token type for parameter placeholders TOKEN_AND // Logical AND operator (& or &&) TOKEN_SKIP // Skip operator ($) )
Click to show internal directories.
Click to hide internal directories.