(retract! id attr)

Equivalent to: (o/reset! (o/retract o/*session* id attr))

Source

(defn retract! "Equivalent to:\n \n (o/reset! (o/retract o/*session* id attr))" [id attr] (if *mutable-session* (vswap! *mutable-session* retract id attr) (throw (ex-info "This function must be called in a :then or :then-finally block" {}))))