Created
July 16, 2018 00:03
-
-
Save swlkr/5e4c5ad06af7ca7b353acbbc3ccdc6b0 to your computer and use it in GitHub Desktop.
Coast Query
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
(ns your-project | |
(:require [coast.db :as db])) | |
(db/q '[:select author/id | |
author/name | |
post/id | |
post/title | |
post/body | |
:joins author/posts | |
:where [author/name ?author/name] | |
:order post/created-at desc] | |
{:author/name "you"}) | |
; => | |
[{:author/id 1 | |
:author/name "you" | |
:post/id 1 | |
:post/title "title 1" | |
:post/body "body 1"} | |
{:author/id 1 | |
:author/name "you" | |
:post/id 2 | |
:post/title "title 2" | |
:post/body "body 1"} | |
{:author/id 1 | |
:author/name "you" | |
: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