summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index 0e19771..a875d25 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -1,4 +1,4 @@
-use crate::{errors::AppError, graphql::types::user};
+use crate::graphql::types::{position, user};
use async_graphql::{Context, Object};
pub struct Query;
@@ -18,4 +18,14 @@ impl Query {
) -> Result<Option<Vec<user::User>>, String> {
user::get_users(ctx, limit, offset).await
}
+
+ /// Returns all the positions
+ async fn positions<'ctx>(
+ &self,
+ ctx: &Context<'ctx>,
+ #[graphql(desc = "Limit results")] limit: Option<i64>,
+ #[graphql(desc = "Offset results")] offset: Option<i64>,
+ ) -> Result<Option<Vec<position::Position>>, String> {
+ position::get_positions(ctx, limit, offset).await
+ }
}