From 75d23c5dafea30967d0a5bbf498c014beab86ee3 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Thu, 23 Feb 2023 21:36:59 +0100 Subject: [PATCH] corrected return type of listTransactionLinks --- backend/src/graphql/resolver/TransactionLinkResolver.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/graphql/resolver/TransactionLinkResolver.ts b/backend/src/graphql/resolver/TransactionLinkResolver.ts index 186a9bf1d..2c8450bd6 100644 --- a/backend/src/graphql/resolver/TransactionLinkResolver.ts +++ b/backend/src/graphql/resolver/TransactionLinkResolver.ts @@ -319,7 +319,7 @@ export class TransactionLinkResolver { } @Authorized([RIGHTS.LIST_TRANSACTION_LINKS]) - @Query(() => [TransactionLink]) + @Query(() => TransactionLinkResult) async listTransactionLinks( @Args() paginated: Paginated,