diff --git a/backend/src/graphql/resolver/util/creations.ts b/backend/src/graphql/resolver/util/creations.ts index 8371f96f1..abf4017cb 100644 --- a/backend/src/graphql/resolver/util/creations.ts +++ b/backend/src/graphql/resolver/util/creations.ts @@ -60,6 +60,7 @@ export const getUserCreations = async ( .andWhere('denied_at IS NULL') .groupBy('month') .addGroupBy('userId') + .orderBy('month', 'DESC') if (!includePending) { sumAmountContributionPerUserAndLast3MonthQuery.andWhere('confirmed_at IS NOT NULL')