Skip to content

Instantly share code, notes, and snippets.

@neumino
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save neumino/c61f0a4bece794660ac1 to your computer and use it in GitHub Desktop.
Save neumino/c61f0a4bece794660ac1 to your computer and use it in GitHub Desktop.
r.table('story').indexCreate('storyAndId', [r.row("storyAuthor"), r.row("id")] )
var authorId = '1';
r.table('comment').orderBy({index: r.desc('created')})
.eqJoin(function(comment) {
return [authorId, comment("parentId")]
}, r.table('story'), {index: "storyAndId"})
.limit(20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment