Waterline Query Language
The Waterline Query language is an object-based criteria used to retrieve the records from any of the supported database adapters. This means that you can use the same query on MySQL as you do on Redis or MongoDb. This allows you to change your database without changing your code.
Query Language Basics
The criteria objects are formed using one of four types of object keys. These are the top level keys used in a query object. It is loosely based on the criteria used in MongoDB with a few slight variations.
Queries can be built using either a where
key to specify attributes, which will allow you to also use query options such as limit
and skip
or if where
is excluded the entire object will be treated as a where
criteria.
Model.find({ where: { name: 'foo' }, skip: 20, limit: 10, sort: 'name DESC' });
// OR
Model.find({ name: 'foo' })
Key Pairs
A key pair can be used to search records for values matching exactly what is specified. This is the base of a criteria object where the key represents an attribute on a model and the value is a strict equality check of the records for matching values.
Model.find({ name: 'walter' })
They can be used together to search multiple attributes.
Model.find({ name: 'walter', state: 'new mexico' })
Modified Pairs
Modified pairs also have model attributes for keys but they also use any of the supported criteria modifiers to perform queries where a strict equality check wouldn't work.
Model.find({
name : {
'contains' : 'alt'
}
})
In Pairs
IN queries work similarly to mysql 'in queries'. Each element in the array is treated as 'or'.
Model.find({
name : ['Walter', 'Skyler']
});
Not-In Pairs
Not-In queries work similar to in
queries, except for the nested object criteria.
Model.find({
name: { '!' : ['Walter', 'Skyler'] }
});
Or Pairs
Performing OR
queries is done by using an array of query pairs. Results will be returned that
match any of the criteria objects inside the array.
Model.find({
or : [
{ name: 'walter' },
{ occupation: 'teacher' }
]
})
Criteria Modifiers
The following modifiers are available to use when building queries.
'<'
/'lessThan'
'<='
/'lessThanOrEqual'
'>'
/'greaterThan'
'>='
/'greaterThanOrEqual'
'!'
/'not'
'like'
'contains'
'startsWith'
'endsWith'
'<' / 'lessThan'
Searches for records where the value is less than the value specified.
Model.find({ age: { '<': 30 }})
'<=' / 'lessThanOrEqual'
Searches for records where the value is less or equal to the value specified.
Model.find({ age: { '<=': 21 }})
'>' / 'greaterThan'
Searches for records where the value is more than the value specified.
Model.find({ age: { '>': 18 }})
'>=' / 'greaterThanOrEqual'
Searches for records where the value is more or equal to the value specified.
Model.find({ age: { '>=': 21 }})
'!' / 'not'
Searches for records where the value is not equal to the value specified.
Model.find({ name: { '!': 'foo' }})
'like'
Searches for records using pattern matching with the %
sign.
Model.find({ food: { 'like': '%beans' }})
'contains'
A shorthand for pattern matching both sides of a string. Will return records where the value contains the string anywhere inside of it.
Model.find({ class: { 'contains': 'history' }})
// The same as
Model.find({ class: { 'like': '%history%' }})
'startsWith'
A shorthand for pattern matching the right side of a string. Will return records where the value starts with the supplied string value.
Model.find({ class: { 'startsWith': 'american' }})
// The same as
Model.find({ class: { 'like': 'american%' }})
'endsWith'
A shorthand for pattern matching the left side of a string. Will