multi-read
["multi-read", [<read-query>+]]
=> [<read-result>+]
["multi-read",
[["count", "people", {"where": ["=", "age", 30]}],
["count", "people", {"where": ["=", "name", "Bob"]}]]]
=> [4 1]
Executes the given read queries on a single snapshot of the database, returning a vector of their respective results.
Each read-query must be either a select, count, explain, list-collections, list-indexes, or multi-read. The queries may operate on different collections.