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.

  1. Model.find({ where: { name: 'foo' }, skip: 20, limit: 10, sort: 'name DESC' });
  2. // OR
  3. 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.

  1. Model.find({ name: 'walter' })

They can be used together to search multiple attributes.

  1. 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.

  1. Model.find({
  2. name : {
  3. 'contains' : 'alt'
  4. }
  5. })

In Pairs

IN queries work similarly to mysql ‘in queries’. Each element in the array is treated as ‘or’.

  1. Model.find({
  2. name : ['Walter', 'Skyler']
  3. });

Not-In Pairs

Not-In queries work similar to in queries, except for the nested object criteria.

  1. Model.find({
  2. name: { '!' : ['Walter', 'Skyler'] }
  3. });

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.

  1. Model.find({
  2. or : [
  3. { name: 'walter' },
  4. { occupation: 'teacher' }
  5. ]
  6. })

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.

  1. Model.find({ age: { '<': 30 }})

‘<=’ / ‘lessThanOrEqual’

Searches for records where the value is less or equal to the value specified.

  1. Model.find({ age: { '<=': 21 }})

‘>’ / ‘greaterThan’

Searches for records where the value is more than the value specified.

  1. Model.find({ age: { '>': 18 }})

‘>=’ / ‘greaterThanOrEqual’

Searches for records where the value is more or equal to the value specified.

  1. Model.find({ age: { '>=': 21 }})

‘!’ / ‘not’

Searches for records where the value is not equal to the value specified.

  1. Model.find({ name: { '!': 'foo' }})

‘like’

Searches for records using pattern matching with the % sign.

  1. 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.

  1. Model.find({ class: { 'contains': 'history' }})
  2. // The same as
  3. 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.

  1. Model.find({ class: { 'startsWith': 'american' }})
  2. // The same as
  3. Model.find({ class: { 'like': 'american%' }})

‘endsWith’

A shorthand for pattern matching the left side of a string. Will