Minor reformatting.

This commit is contained in:
Rand McKinney 2013-12-03 12:16:35 -08:00
parent 9d55bc0002
commit 0733d932d8
1 changed files with 2 additions and 3 deletions

View File

@ -182,7 +182,7 @@ values, as described in the following table.
|skip (offset) | Number | Skip the specified number of instances. Use offset as alternative. | |skip (offset) | Number | Skip the specified number of instances. Use offset as alternative. |
|fields| Object, Array, or String | The included/excluded fields. For foramt, see fields below. |fields| Object, Array, or String | The included/excluded fields. For foramt, see fields below.
**Operations**: **Operations available in where filter**:
- gt: > - gt: >
- gte: >= - gte: >=
- lt: < - lt: <
@ -201,13 +201,12 @@ values, as described in the following table.
- {'owner': ['posts', 'passports']}: Load owner, owner's posts, and owner's passports - {'owner': ['posts', 'passports']}: Load owner, owner's posts, and owner's passports
- {'owner': [{posts: 'images'}, 'passports']}: Load owner, owner's posts, owner's posts' images, and owner's passports - {'owner': [{posts: 'images'}, 'passports']}: Load owner, owner's posts, owner's posts' images, and owner's passports
*Fields*: **Fields format**:
- `['foo']` or `'foo'` - include only the foo property - `['foo']` or `'foo'` - include only the foo property
- `['foo', 'bar']` - include the foo and bar properties - `['foo', 'bar']` - include the foo and bar properties
- `{foo: true}` - include only foo - `{foo: true}` - include only foo
- `{bat: false}` - include all properties, exclude bat - `{bat: false}` - include all properties, exclude bat
For example, For example,
- '/weapons': Weapons - '/weapons': Weapons