Any reason why I would not see a UUID printed in the console when using om/transact! ?
(as in the quick start Wiki entry)
@kardan I've seen it's hidden in later versions of Chrome. Try adjusting your log filters.
I no longer see it under 'Info', I have to change to 'Verbose'
You’re correct, thanks a million. Was starting to question my sanity
I'm not sure why because I believe the log level should be info.
Question about om-next / Datomic interaction. I'm sending my requests from the client over transit+json and I want to leverage Datomic's pull syntax. I have this working when I define all the parameters I want, but I am having difficulties using wildcard syntax. Anyone have a suggestion or link to an example if this is possible?
example of what I want to be able to define on the client: (:user/by-id '[* {:user/permissions [*]}])
I don't believe wildcards are allowed since they're written as a symbol and afaik only keywords and maps are allowed in a query. Also, the point of queries are for the components to specify what they expect and wildcards would break that. Just declare all the keywords you need.
That makes sense, thanks.