Fork me on GitHub
#om
<
2017-06-19
>
kardan11:06:55

Any reason why I would not see a UUID printed in the console when using om/transact! ?

kardan11:06:58

(as in the quick start Wiki entry)

danielstockton11:06:30

@kardan I've seen it's hidden in later versions of Chrome. Try adjusting your log filters.

danielstockton11:06:02

I no longer see it under 'Info', I have to change to 'Verbose'

kardan11:06:19

You’re correct, thanks a million. Was starting to question my sanity

danielstockton11:06:22

I'm not sure why because I believe the log level should be info.

oconn22:06:46

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?

oconn22:06:59

example of what I want to be able to define on the client: (:user/by-id '[* {:user/permissions [*]}])

oscar22:06:34

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.

oconn22:06:06

That makes sense, thanks.