Add a placeholder implementation of ParkingStructureResolvers

This commit is contained in:
2025-07-19 11:55:51 -04:00
parent a76601d8cf
commit 3302822bf8
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { Resolvers } from "../generated/graphql";
import { ServerContext } from "../ServerContext";
export const ParkingStructureResolvers: Resolvers<ServerContext> = {
ParkingStructure: {
historicalAverages: async (parent, args, contextValue, _info) => {
return [];
}
}
}