We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7206145 commit 3204e33Copy full SHA for 3204e33
packages/server/src/api/rest/index.ts
@@ -317,7 +317,7 @@ class RequestHandler extends APIHandlerBase {
317
let match = this.urlPatterns.collection.match(path);
318
if (match) {
319
const body = requestBody as any;
320
- const upsertMeta = this.upsertMetaSchema.safeParse(body.meta);
+ const upsertMeta = this.upsertMetaSchema.safeParse(body);
321
if (upsertMeta.success) {
322
// resource upsert
323
return await this.processUpsert(
0 commit comments