fix: id parameter to Int in seed

This commit is contained in:
Moriz Wahl 2022-03-19 13:08:37 +01:00
parent 612b8ca69c
commit 7dfa0e37ee

View File

@ -94,7 +94,7 @@ export const createPendingCreation = gql`
`
export const confirmPendingCreation = gql`
mutation ($id: Float!) {
mutation ($id: Int!) {
confirmPendingCreation(id: $id)
}
`