Return Format
moduleSettings = {
"qb": {
"returnFormat": "array"
}
};moduleSettings = {
"qb": {
"returnFormat": "query"
}
};var qb = wirebox.getInstance( "QueryBuilder@qb" );
qb
.setReturnFormat( 'query' )
.from( 'users' )
.get()Was this helpful?