-
Notifications
You must be signed in to change notification settings - Fork 0
select
blixit edited this page Jan 19, 2017
·
1 revision
: [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
}