From 7dfa0e37ee1d1510225d4b658ad9963347fa56fe Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Sat, 19 Mar 2022 13:08:37 +0100 Subject: [PATCH] fix: id parameter to Int in seed --- backend/src/seeds/graphql/mutations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/seeds/graphql/mutations.ts b/backend/src/seeds/graphql/mutations.ts index 19ca2a8d0..f68d983c0 100644 --- a/backend/src/seeds/graphql/mutations.ts +++ b/backend/src/seeds/graphql/mutations.ts @@ -94,7 +94,7 @@ export const createPendingCreation = gql` ` export const confirmPendingCreation = gql` - mutation ($id: Float!) { + mutation ($id: Int!) { confirmPendingCreation(id: $id) } `