Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tomjack
Created May 22, 2012 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomjack/651495618665de2a2041 to your computer and use it in GitHub Desktop.
Save tomjack/651495618665de2a2041 to your computer and use it in GitHub Desktop.
(defn get-resource-type
"Get the type for the resource."
[uuid]
(:type
(first
(select resource
(fields :type)
(where {:signature uuid})
(limit 1)))))
(defn get-resource-type
"Get the type for the resource."
[uuid]
(:type
(first
(select
resource
(fields :type)
(where {:signature uuid})
(limit 1)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment