The partitions argument is a keyword or list of keywords specifying the types of objects to be retrieved. Available partitions are :instances, :concepts, :relations, and :behaviors. If this argument is not supplied, all partitions are used.
The sort-p argument is t or :sort-each-partition. If it is t, all objects in the specified partitions are sorted together. If it is :sort-each-partition, the specified partitions are sorted separately.
(list-kb) (list-kb "USER-KB") ==> (|I|JOE |C|Z |C|A |R|R |ACTION|MOVE) (list-kb :sort-p t) ==> (|C|A |I|JOE |ACTION|MOVE |R|R |C|Z) (list-kb :partitions (:concepts :relations) :sort-p :sort-each-partition) ==> (|C|A |C|Z |R|R)