I am new to Clojure. I have a result map from a database and it contains key values, such as:
{:Unique Product ID "09876" :ProductName "XYZ"}
I want to get values from the map, but I'm having trouble getting a unique product identifier.
ProductID (str ( map-name ":Unique Product ID"))
The product name works great using:
ProductName (str ( map-name :ProductName"))
I am not sure how to handle the space in the field of the Product ID field. How do I get the value for this key from the card?
thanks
user1494355
source share