diff --git a/backend/src/graphql/resolver/TransactionLinkResolver.ts b/backend/src/graphql/resolver/TransactionLinkResolver.ts index e43848a97..b0e197a68 100644 --- a/backend/src/graphql/resolver/TransactionLinkResolver.ts +++ b/backend/src/graphql/resolver/TransactionLinkResolver.ts @@ -126,7 +126,7 @@ export class TransactionLinkResolver { @Authorized([RIGHTS.LIST_TRANSACTION_LINKS]) @Query(() => [TransactionLink]) async listTransactionLinks( - @Arg('offset', { nullable: true }) offset = 0, + @Arg('offset', { nullable: true }) offset: number = 0, @Ctx() context: any, ): Promise { const userRepository = getCustomRepository(UserRepository)