You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems to be just some strangeness with the clojure pretty printer if you do {(keyword "projfoobar/files/foo") "foo"} it returns #:projfoobar{:files/foo "foo"} which seems to be some kind of namespaced map (since having / in keywords allows you to namespace them) if you do (:projfoobar/files/foo {(keyword "projfoobar/files/foo") "foo"}) it returns "foo" and if you do (keys {(keyword "projfoobar/files/foo") "foo"}) it returns (:projfoobar/files/foo).
Insert the following document:
{"content" : { "prjfoobar/files/foo" : "foo" }
(mc/find-one-as-map db "documents" { :_id (ObjectId. "5dfe449f1bbe8f22701dcf27") })
Returns:
{:_id #object[org.bson.types.ObjectId 0x93cf96d "5dfe449f1bbe8f22701dcf27"], :content #:prjfoobar{:files/foo "foo"}}
... the content map is pretty broken.
Version: 3.1.0
The text was updated successfully, but these errors were encountered: