summaryrefslogtreecommitdiff
path: root/src/graphql/query.rs
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-10-18 15:06:12 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-10-18 15:06:12 +0200
commit874e85a8b1a6c5d9c5bbc1f4429785563a1f7426 (patch)
treee1a65d6d3f3fff18c04f0f686676c96c4e72b5a0 /src/graphql/query.rs
parentf252e471b911e4921174b5c1c451f33d1979e04f (diff)
Filter positions by list of moving activities
Diffstat (limited to 'src/graphql/query.rs')
-rw-r--r--src/graphql/query.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphql/query.rs b/src/graphql/query.rs
index 2ab26ec..96b8a5b 100644
--- a/src/graphql/query.rs
+++ b/src/graphql/query.rs
@@ -59,7 +59,7 @@ impl Query {
&self,
ctx: &Context<'ctx>,
#[graphql(desc = "Filter by moving activity")] moving_activity: Option<
- position::MovingActivity,
+ Vec<position::MovingActivity>,
>,
#[graphql(desc = "Limit results")] limit: Option<i64>,
#[graphql(desc = "Offset results")] offset: Option<i64>,