Function: closql-query
closql-query is a byte-compiled function defined in closql.el.
Signature
(closql-query ARG &rest ARGS)
Implementations
(closql-query (DB closql-database) &optional SELECT PRED CLASS) in `closql.el'.
Undocumented
Source Code
;; Defined in ~/.emacs.d/elpa/closql-20260101.1828/closql.el
(cl-defmethod closql-query ((db closql-database) &optional select pred class)
(if select
(let ((value (closql-select db select pred class)))
(if (and select (symbolp select))
(mapcar #'car value)
value))
(closql-entries db pred class)))