edgedb-js
edgedb-js copied to clipboard
Ability to create stateless clients
Describe the proposed feature A clear and concise description of the syntax, what you want to happen, and why it's needed.
Add the ability to create fully stateless clients that lack the ability to perform transactions. These stateless clients provide a safe way to execute queries in any environment, including edge or browser environments that don't support the binary protocol.
createClient().stateless()
// or
createClient().withoutTransactions()
This would be great!