Skip to content

Commit

Permalink
return source
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadPCh committed Nov 15, 2024
1 parent d0cd7c2 commit bc637b5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/server-extension/project-resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export class ProjectResolver {
const query = `
SELECT
project.id,
project.source,
project.rf_rounds,
SUM(organisation_project.count) AS total_count
FROM
Expand All @@ -94,6 +95,7 @@ export class ProjectResolver {
return rawProjects.map(
(rawProject: {
id: string;
source: string;
rf_rounds: number[] | null;
total_count: number;
}) => ({
Expand Down

0 comments on commit bc637b5

Please sign in to comment.