Skip to content

Instantly share code, notes, and snippets.

@swlkr
Created July 16, 2018 00:03
Show Gist options
  • Save swlkr/5e4c5ad06af7ca7b353acbbc3ccdc6b0 to your computer and use it in GitHub Desktop.
Save swlkr/5e4c5ad06af7ca7b353acbbc3ccdc6b0 to your computer and use it in GitHub Desktop.
Coast Query
(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