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
{:mutate
(fn [env k p]
(when (and (= 'foo/conj k) (:target env))
[true:query/foo]))
:read
(fn [env k p]
(when (and (=:query/foo k) (:target env))
false))}
((parser *1) {} '[(foo/conj)] :remote)
;; should equal '[(foo/conj)];; not '[(foo/conj) :remote];; because :query/foo is not a remote read;; even though the mutate suggested that it is.
The text was updated successfully, but these errors were encountered:
Use case:
The text was updated successfully, but these errors were encountered: