The role argument is a relation, or the name of a relation.
The context argument is the context, or the symbol or string that names the context, where the lookup of instance and role begins. This defaults to the current context.
If the no-error-p argument is t, then error messages are suppressed.
(defrelation son :is (:and child (:range Male))) (defrelation parent :is (:inverse child)) (defrelation wife :characteristics :single-valued) (tellm (son Fred Joe) (parent Joe Mary) (wife Joe Sue)) (get-inverse-values 'Joe 'child) ==> (|I|FRED |I|MARY) (get-inverse-values (fi Sue) (fr wife) :context "CL-USER-THEORY") ==> (|I|JOE) (get-inverse-values 'Joe 'xxx :no-error-p t) ==> NIL :MISSING-ROLE