mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2025-07-06 09:30:37 +02:00
12 lines
262 B
JavaScript
12 lines
262 B
JavaScript
import { graphql } from 'react-relay';
|
|
|
|
export const ItineraryListContainerPlanEdges = graphql`
|
|
fragment ItineraryListContainerPlanEdges on PlanEdge @relay(plural: true) {
|
|
...ItineraryListPlanEdges
|
|
node {
|
|
legs {
|
|
mode
|
|
}
|
|
}
|
|
}
|
|
`;
|