Last active
July 17, 2018 00:07
-
-
Save swlkr/0e9157508acfd5064ca900f7bd7256b7 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
(db/q '[:pull [author/id | |
author/email | |
author/name | |
{:author/posts [post/title | |
post/body]}] | |
:where [author/name ?author/name]] | |
{:author/name "Cody Coast"}) | |
; => | |
[{:author/id 1 | |
:author/name "Cody Coast" | |
:author/posts [{:post/id 1 | |
:post/title "title 1" | |
:post/body "body 1"} | |
{:post/id 2 | |
:post/title "title 2" | |
:post/body "body 2"} | |
{:post/id 3 | |
:post/title "title 3" | |
:post/body "body 3"}]}] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment