Syntax

Here is a Backus–Naur form representation of the full FETCH syntax in abstract form:

FETCH

FETCH

FETCH    ::= 'FETCH' entityName '(' property ( ',' property )* ')' linkedEntities* ( 'FILTER' filter )? orderBy? ( 'LIMIT' int ( ',' int )? )?

property

property

property ::= ( propertyName ( 'AS' alias )? | ( 'SUM' | 'AVG' | 'STD' | 'MIN' | 'MAX' | 'COUNT' | 'CONCAT' ) '(' propertyName ')' ) 'GROUP BY'?

referenced by:

  • FETCH

linkedEntities

linkedEntities

linkedEntities
         ::= '{' linkEntity ( ',' linkEntity )* '}'

referenced by:

  • FETCH
  • linkEntity

linkEntity

linkEntity

linkEntity
         ::= entityName '(' 'property' ( ',' 'property' )* ')' 'FROM' propertyName 'TO' propertyName ( 'LINK TYPE' ( 'LEFT' | 'RIGHT' | 'INNER' ) )? linkedEntities* ( 'FILTER' filter )? orderBy?

referenced by:

  • linkedEntities

filter

filter

filter   ::= ( 'AND' | 'OR' ) '(' ( condition | filter ( ',' ( condition | filter )* )? )? ')'

referenced by:

  • FETCH
  • filter
  • linkEntity

condition

condition

condition
         ::= propertyName ( operator value | 'IS NULL' | 'IS NOT NULL' | 'IN' '(' value ( ',' value )* ')' | ( 'BEFORE NEXT' | 'AFTER NEXT' | 'IN NEXT' | 'BEFORE LAST' | 'AFTER LAST'
                  | 'IN LAST' ) value 'DAYS' )

referenced by:

  • filter

operator

operator

operator ::= '=='
           | 'LIKE'
           | '>'
           | '<'
           | '>='
           | '<='
           | 'MATCH'

referenced by:

  • condition

value

value

value    ::= string
           | int
           | decimal

referenced by:

  • condition

orderBy

orderBy

orderBy  ::= 'ORDER BY' propertyName ( 'ASC' | 'DESC' ) ( ',' propertyName ( 'ASC' | 'DESC' ) )*

referenced by:

  • FETCH
  • linkEntity

alias

alias

alias    ::= [A-Za-z_] [A-Za-z_0-9]*

referenced by:

  • property

entityName

entityName

entityName
         ::= [A-Za-z] [A-Za-z_0-9]*

referenced by:

  • FETCH
  • linkEntity

propertyName

propertyName

propertyName
         ::= [A-Za-z] [A-Za-z_0-9]*

referenced by:

  • condition
  • linkEntity
  • orderBy
  • property

int

int

int      ::= [0-9]*

referenced by:

  • FETCH
  • value

decimal

decimal

decimal  ::= [0-9]+ '.' [0-9]+

referenced by:

  • value

comment

comment

string

string

string   ::= '"' [^"]* '"'

referenced by:

  • value