From 105f6831d13ebb473b6ce9b63c5c159b5a6c964d Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Thu, 12 Sep 2024 11:46:27 +0200 Subject: Each alert has text{1,2,3} for the three possible area Alert level is moved to the notification struct --- src/graphql/mutation.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/graphql/mutation.rs') diff --git a/src/graphql/mutation.rs b/src/graphql/mutation.rs index 4a31428..34aa1cc 100644 --- a/src/graphql/mutation.rs +++ b/src/graphql/mutation.rs @@ -149,7 +149,7 @@ impl Mutation { /// -H "Content-Type: application/json" \ /// -H "Authorization: Bearer ****" \ /// -d '{ - /// "query": "mutation NewAlert($input: AlertInput!) { newAlert(input: $input) { id createdAt level } }", + /// "query": "mutation NewAlert($input: AlertInput!) { newAlert(input: $input) { id createdAt } }", /// "variables": { /// "input": { /// "points": [ @@ -159,7 +159,9 @@ impl Mutation { /// { "latitude": 44.498321, "longitude": 11.312145}, /// { "latitude": 44.490025, "longitude": 11.311498} /// ], - /// "level": "TWO" + /// "text1": "Alert level 1", + /// "text2": "Alert level 2", + /// "text3": "Alert level 3" /// } /// } /// } -- cgit v1.2.3-18-g5258