From d71a73ec3b48ade0370a259d1ea5b15680b576b9 Mon Sep 17 00:00:00 2001 From: elweyn Date: Tue, 10 Jan 2023 10:56:08 +0100 Subject: [PATCH] Add new mutation variables to the tests mutation in backend. --- backend/src/seeds/graphql/mutations.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend/src/seeds/graphql/mutations.ts b/backend/src/seeds/graphql/mutations.ts index e5dc90a0e..2b4ed6656 100644 --- a/backend/src/seeds/graphql/mutations.ts +++ b/backend/src/seeds/graphql/mutations.ts @@ -31,6 +31,8 @@ export const updateUserInfos = gql` $password: String $passwordNew: String $locale: String + $hideAmountGDD: Boolean + $hideAmountGDT: Boolean ) { updateUserInfos( firstName: $firstName @@ -38,6 +40,8 @@ export const updateUserInfos = gql` password: $password passwordNew: $passwordNew language: $locale + hideAmountGDD: $hideAmountGDD + hideAmountGDT: $hideAmountGDT ) } `