@kiwicom/smart-faq
Version:
Smart FAQ
68 lines (62 loc) • 1.28 kB
JavaScript
/**
* @flow
*/
/* eslint-disable */
;
/*::
import type { ReaderFragment } from 'relay-runtime';
import type { FragmentReference } from "relay-runtime";
declare export opaque type BookingInfo_leg$ref: FragmentReference;
export type BookingInfo_leg = {|
+arrival: ?{|
+time: ?any
|},
+departure: ?{|
+time: ?any
|},
+$refType: BookingInfo_leg$ref,
|};
*/
const node/*: ReaderFragment*/ = (function(){
var v0 = [
{
"kind": "ScalarField",
"alias": null,
"name": "time",
"args": null,
"storageKey": null
}
];
return {
"kind": "Fragment",
"name": "BookingInfo_leg",
"type": "Leg",
"metadata": null,
"argumentDefinitions": [],
"selections": [
{
"kind": "LinkedField",
"alias": null,
"name": "arrival",
"storageKey": null,
"args": null,
"concreteType": "RouteStop",
"plural": false,
"selections": (v0/*: any*/)
},
{
"kind": "LinkedField",
"alias": null,
"name": "departure",
"storageKey": null,
"args": null,
"concreteType": "RouteStop",
"plural": false,
"selections": (v0/*: any*/)
}
]
};
})();
// prettier-ignore
(node/*: any*/).hash = '5e01ef817c73d575b3bc3c221ca3c631';
module.exports = node;