Last active
August 29, 2015 14:06
-
-
Save neumino/c61f0a4bece794660ac1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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