You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my Chrome I've got an error with this code var myQuery = $indexedDB.queryBuilder().$index('age_idx').$gt(40).$asc.compile();
but without .$asc snipped it works ok. Where I get to know more knowledge about correct query composing?
The text was updated successfully, but these errors were encountered:
You've probably missed the brackets with $asc(), which takes a single
boolean parameter indicating whether or not to include only unique values.
Am 25.06.2014 14:19 schrieb "SkyQuant" [email protected]:
In my Chrome I've got an error with this code var myQuery =
$indexedDB.queryBuilder().$index('age_idx').$gt(40).$asc.compile();
but without .$asc snipped it works ok. Where I get to know more knowledge
about correct query composing?
—
Reply to this email directly or view it on GitHub #32.
In my Chrome I've got an error with this code
var myQuery = $indexedDB.queryBuilder().$index('age_idx').$gt(40).$asc.compile();
but without
.$asc
snipped it works ok. Where I get to know more knowledge about correct query composing?The text was updated successfully, but these errors were encountered: