summaryrefslogtreecommitdiff
path: root/app/(tabs)/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'app/(tabs)/index.tsx')
-rw-r--r--app/(tabs)/index.tsx22
1 files changed, 16 insertions, 6 deletions
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,
+ },
+ },
}),
},
);