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<Vec<Output>, e::edgedb_errors::Error> {
client.query(QUERY, &()).await
}
#[cfg(feature = "query")]
pub async fn transaction(
conn: &mut e::edgedb_tokio::Transaction,
) -> core::result::Result<Vec<Output>, e::edgedb_errors::Error> {
conn.query(QUERY, &()).await
}
pub type Input = ();
pub type Output = String;
pub const QUERY: &str = "select {\"set\", \"of\", \"strings\"}";
}
}