Skip to content

Instantly share code, notes, and snippets.

@swlkr
Last active July 17, 2018 00:07
Show Gist options
  • Save swlkr/0e9157508acfd5064ca900f7bd7256b7 to your computer and use it in GitHub Desktop.
Save swlkr/0e9157508acfd5064ca900f7bd7256b7 to your computer and use it in GitHub Desktop.
(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