Skip to content

Commit f7e9ae9

Browse files
committed
feat(graphResolvers): return null for cds_year stats
1 parent 4819a44 commit f7e9ae9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/values/graph-resolvers/graph-resolvers.value.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ export function GraphResolvers(
2020
return data ? GraphMapper.toTeachingGraph(data) : null;
2121
},
2222
cds_year: () => {
23-
throw new Error('Function not implemented.');
23+
console.error('Function not implemented.');
24+
return null;
2425
},
2526
};
2627
}

0 commit comments

Comments
 (0)