Last active
August 29, 2015 14:26
-
-
Save mbseid/a91bc7e250ee5d680527 to your computer and use it in GitHub Desktop.
RethinkDB and Thinky
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
Book | |
.filter({ | |
published: true | |
}) | |
.orderBy("datePublished") | |
.getJoin({ | |
author: true | |
}) | |
.filter({ | |
author: { | |
state: "CA" | |
} | |
}).run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment