SYNG1003 - Unfinished list
Domain: sexp
Severity: USER
An opening parenthesis was never closed.
Every ( must have a corresponding ) later in the query. This error indicates the query ended while still inside an unclosed list.
Example
clojure
(call a (x)The inner list (x) is closed but the outer list (call ... is not.
Solution
Add the missing closing parenthesis:
clojure
(call a (x))