change all millisecond references into Dates

This commit is contained in:
2025-04-29 17:05:23 -07:00
parent b58babc7ea
commit 1c7ee9fbc3
9 changed files with 51 additions and 51 deletions

View File

@@ -3,7 +3,7 @@ import { ServerContext } from "../ServerContext";
export const RouteResolvers: Resolvers<ServerContext> = {
Route: {
shuttles: async (parent, args, contextValue, info) => {
shuttles: async (parent, args, contextValue, _info) => {
const system = contextValue.findSystemById(parent.systemId);
if (!system) return null;
@@ -23,10 +23,10 @@ export const RouteResolvers: Resolvers<ServerContext> = {
id,
orientationInDegrees,
systemId: parent.systemId,
updatedTime: updatedTimeMs,
updatedTime,
}));
},
orderedStop: async (parent, args, contextValue, info) => {
orderedStop: async (parent, args, contextValue, _info) => {
if (!args.forStopId) return null;
const system = contextValue.findSystemById(parent.systemId);