diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | app/(tabs)/index.tsx | 22 |
2 files changed, 16 insertions, 8 deletions
@@ -18,8 +18,6 @@ After that you need to edit the `.env` file and set up: - `EXPO_PUBLIC_API_URL`: refers to the backend URL. -- `EXPO_PUBLIC_ALERTD_URL`: refers to the alertd URL. - And start the Expo app. ``` diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx index 9fff8f8..f4ff0ea 100644 --- a/app/(tabs)/index.tsx +++ b/app/(tabs)/index.tsx @@ -348,18 +348,28 @@ export default function HomeScreen() { } const response = await fetch( - `${process.env.EXPO_PUBLIC_ALERTD_URL}`, + `${process.env.EXPO_PUBLIC_API_URL}`, { method: "POST", headers: { + Authorization: `Bearer ${token}`, "Content-Type": "application/json", }, body: JSON.stringify({ - latitude: coords.latitude, - longitude: coords.longitude, - login: token, - uid: userId, - movingActivity, + query: ` + mutation NewPosition($input: PositionInput!) { + newPosition(input: $input) { + id userId createdAt latitude longitude movingActivity + } + } + `, + variables: { + input: { + latitude: coords.latitude, + longitude: coords.longitude, + movingActivity, + }, + }, }), }, ); |