Skip to content

Instantly share code, notes, and snippets.

@colinf
Last active July 13, 2016 16:03
Show Gist options
  • Save colinf/5fe538bc758813d63f7c to your computer and use it in GitHub Desktop.
Save colinf/5fe538bc758813d63f7c to your computer and use it in GitHub Desktop.
The query statements from message_item.clj ( see http://bit.ly/29ywoTL )
(defui MessageItem
static om/Ident
(ident [this {:keys [message/id]}]
[:messages/by-id id])
static om/IQuery
(query [this]
[:message/id :message/author-name :message/date :message/text])
Object
(render [this]
(div nil "Example Text")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment