Skip to content
blixit edited this page Jan 19, 2017 · 1 revision

Select Query Specification

: [SQuery, ... ]
SQuery = QueryName [QueryArgs] [Propagation] [ '{' QueryField, ... '}' ]
QueryName = 'DatabaseTable' | 'Function'
QueryArgs = '(' Object ')'
Propagation = 'propagate' ['default' | 'full']
QueryField = 'identifier' [QueryArgs] [Propagation] [ '{' QueryField, ... '}' ]

Example :

:
    Users(){
        id
    }
    Users{
        name
    }
    Users ({if:["tasksdone>5"]}){
        age,
        birthday
    }
    
Clone this wiki locally