From 185ba5270aaf94de9b91e4455be27db5198ec21e Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Wed, 21 Aug 2024 11:59:50 +0200 Subject: Reformat graphql mod --- src/graphql/query.rs | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/graphql/query.rs (limited to 'src/graphql/query.rs') diff --git a/src/graphql/query.rs b/src/graphql/query.rs new file mode 100644 index 0000000..683885e --- /dev/null +++ b/src/graphql/query.rs @@ -0,0 +1,36 @@ +use async_graphql::{Context, Object}; + +pub struct Query; + +#[Object] +impl Query { + async fn api_version(&self) -> &'static str { + "1.0" + } + + /// Returns the sum of a and b + async fn add<'ctx>( + &self, + _ctx: &Context<'ctx>, + #[graphql(desc = "First value")] a: i32, + #[graphql(desc = "Second value")] b: Option, + ) -> i32 { + // let state = ctx.data::().unwrap(); + // let client = &*state.client; + // + // // Perform a database query + // let rows = client + // .query("SELECT owner FROM payment", &[]) + // .await + // .unwrap(); + // for row in rows { + // let owner: String = row.get(0); + // println!("{owner}"); + // } + + match b { + Some(x) => a + x, + None => a, + } + } +} -- cgit v1.2.3-18-g5258