From 34be808472dc16e0439b0ad0e7c11760845b33df Mon Sep 17 00:00:00 2001 From: Claus-Peter Huebner Date: Thu, 21 Sep 2023 00:10:34 +0200 Subject: [PATCH] change SendCoinsArgs to @InputType() --- federation/src/graphql/api/1_0/model/SendCoinsArgs.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/federation/src/graphql/api/1_0/model/SendCoinsArgs.ts b/federation/src/graphql/api/1_0/model/SendCoinsArgs.ts index fb97da925..e658209ca 100644 --- a/federation/src/graphql/api/1_0/model/SendCoinsArgs.ts +++ b/federation/src/graphql/api/1_0/model/SendCoinsArgs.ts @@ -1,7 +1,7 @@ import { Decimal } from 'decimal.js-light' -import { ArgsType, Field } from 'type-graphql' +import { Field, InputType } from 'type-graphql' -@ArgsType() +@InputType() export class SendCoinsArgs { @Field(() => String) recipientCommunityUuid: string