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.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
}
}
`,