summaryrefslogtreecommitdiff
path: root/app/(tabs)/index.tsx
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-11-28 02:53:07 +0100
committerSanto Cariotti <santo@dcariotti.me>2024-11-28 02:53:07 +0100
commit2a6848c679df7b3b39c275c0041fc5f8e02334f1 (patch)
treeb70c6789bb86c5ff5d485b7cb8c59dd22166df42 /app/(tabs)/index.tsx
parentf5d17ffcb6d09e8f3498ad50952b688f3729901e (diff)
Bump Expo SDK 52
Diffstat (limited to 'app/(tabs)/index.tsx')
-rw-r--r--app/(tabs)/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/(tabs)/index.tsx b/app/(tabs)/index.tsx
index f4ff0ea..d6b970b 100644
--- a/app/(tabs)/index.tsx
+++ b/app/(tabs)/index.tsx
@@ -348,7 +348,7 @@ export default function HomeScreen() {
}
const response = await fetch(
- `${process.env.EXPO_PUBLIC_API_URL}`,
+ `${process.env.EXPO_PUBLIC_API_URL}/graphql`,
{
method: "POST",
headers: {
@@ -359,7 +359,7 @@ export default function HomeScreen() {
query: `
mutation NewPosition($input: PositionInput!) {
newPosition(input: $input) {
- id userId createdAt latitude longitude movingActivity
+ id
}
}
`,