fn main() {
pub mod example {
use ::edgedb_codegen::exports as e;
#[cfg(feature = "query")]
pub async fn query(
client: &e::edgedb_tokio::Client,
) -> core::result::Result<Output, e::edgedb_errors::Error> {
client.query_required_single(QUERY, &()).await
}
#[cfg(feature = "query")]
pub async fn transaction(
conn: &mut e::edgedb_tokio::Transaction,
) -> core::result::Result<Output, e::edgedb_errors::Error> {
conn.query_required_single(QUERY, &()).await
}
pub type Input = ();
pub type Output = Vec<i64>;
pub const QUERY: &str = "select [1, 2, 3]";
}
}