execute ( options: Object ) →{ Promise }
Executes the query.
Parameters
Name | Type | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options | Object | options Options object. Properties
|
refresh ( force: Boolean )
Refrehes the query.
Parameters
Name | Type | Description |
---|---|---|
force | Boolean | Force the query to execute |
removeParameter ( param: String , noupdate: Boolean )
Clears the value of specified parameter.
Parameters
Name | Type | Description |
---|---|---|
param | String | The name of the parameter to clear. |
noupdate | Boolean | If true, the query will not automatically update after the parameter has been removed. |
setParameter ( param: String , value: Object , noupdate: Boolean )
Sets a query parameter to the specified value.
Parameters
Name | Type | Description |
---|---|---|
param | String | The name of the parameter. |
value | Object | The desired value. |
noupdate | Boolean | If true, the query will not automatically update after the value has been set. |
setParameters ( params: Object , noupdate: Boolean )
Sets a collection of parameters to their specified values.
Parameters
Name | Type | Description |
---|---|---|
params | Object | value pairs. |
noupdate | Boolean | If true, the query will not automatically update after the value has been set. |