Queries¶
RayforceDB has an simple but powerful query language. It has dictionary notation which is very similar to JSON and it is easy to use.
Query format¶
(select
{
;; predicates
from: <expr>
[where: <expr>]
[by: <expr>]
;; fields
[field1: <expr>]
[field2: <expr>]
...
}
)