mirror of
https://github.com/HSLdevcom/digitransit-ui
synced 2026-02-01 21:30:34 +01:00
12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
import { graphql } from 'react-relay';
|
|
|
|
export const SchedulePatternFragment = graphql`
|
|
fragment SchedulePatternFragment on Pattern {
|
|
id
|
|
code
|
|
stops {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
`;
|