digitransit-ui/app/component/itinerary/queries/ItineraryListPlanEdges.js
2025-05-06 14:57:17 +03:00

20 lines
363 B
JavaScript

import { graphql } from 'react-relay';
export const ItineraryListPlanEdges = graphql`
fragment ItineraryListPlanEdges on PlanEdge @relay(plural: true) {
node {
...ItineraryFragment
emissionsPerPerson {
co2
}
legs {
transitLeg
mode
route {
mode
type
}
}
}
}
`;