From 79220ced79884eae9d382fc7fc7bdec3cec3bffd Mon Sep 17 00:00:00 2001 From: elweyn Date: Fri, 13 Jan 2023 11:05:56 +0100 Subject: [PATCH] Add deleted Contribution to the Contribution list in the admin interface. --- backend/src/graphql/resolver/ContributionResolver.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/graphql/resolver/ContributionResolver.ts b/backend/src/graphql/resolver/ContributionResolver.ts index bca3e7674..6790ea5ad 100644 --- a/backend/src/graphql/resolver/ContributionResolver.ts +++ b/backend/src/graphql/resolver/ContributionResolver.ts @@ -674,6 +674,7 @@ export class ContributionResolver { .from(DbContribution, 'c') .leftJoinAndSelect('c.user', 'u') .where(`user_id = ${userId}`) + .withDeleted() .limit(pageSize) .offset(offset) .orderBy('c.created_at', order)