fix: don't support old queries and mutators in schema

This commit is contained in:
Max Koon
2025-10-15 06:44:52 -04:00
parent bbe86f6049
commit 23987e4f87
7 changed files with 20 additions and 13 deletions

View File

@@ -22,7 +22,10 @@ export function createMutators(authData: AuthData | null) {
for (const i of t) {
await tx.mutate.transaction.delete({ id: i.id });
}
}
},
},
link: {
async create() {}
}
} as const;
}