Skip to content

Instantly share code, notes, and snippets.

@davefinster
Created January 17, 2017 10:15
Show Gist options
  • Save davefinster/db8ece0b0519904ef13ad9e167da7b9c to your computer and use it in GitHub Desktop.
Save davefinster/db8ece0b0519904ef13ad9e167da7b9c to your computer and use it in GitHub Desktop.
//query is something like
query = r.table("users").filter(function(user){
return user.name.eq(foo)
})
inner = r.do("", function(string) {
var item = query;
return {
count:item.count(),
results: item.slice(offset, offset + limit).coerceTo('array')
};
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment