Skip to content

Instantly share code, notes, and snippets.

@halfdan
Created October 26, 2013 16:39
Show Gist options
  • Save halfdan/7171633 to your computer and use it in GitHub Desktop.
Save halfdan/7171633 to your computer and use it in GitHub Desktop.
Node.js v0.11.x:
{ page: 1,
limit: 15,
where: { page: 'all', [__proto__]: {} },
status: 'all',
orderBy: [ 'updated_at', 'DESC' ] }
{ page: 1,
limit: 15,
where: { [__proto__]: {} },
status: 'all',
orderBy: [ 'updated_at', 'DESC' ],
withRelated: [ 'author', 'user', 'tags' ] }
Node.js v0.10.x:
{ page: 1,
limit: 15,
where: { page: 'all' },
status: 'all',
orderBy: [ 'updated_at', 'DESC' ] }
{ page: 1,
limit: 15,
where: {},
status: 'all',
orderBy: [ 'updated_at', 'DESC' ],
withRelated: [ 'author', 'user', 'tags' ] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment