@kiwicom/smart-faq
Version:
62 lines (56 loc) • 1.63 kB
JavaScript
/**
* @flow
*/
/* eslint-disable */
'use strict';
/*::
import type { ReaderFragment } from 'relay-runtime';
export type BookingStatus = "CANCELLED" | "CLOSED" | "CONFIRMED" | "DELETED" | "EXPIRED" | "IN_PROCESS" | "NEW" | "PENDING" | "REFUNDED" | "%future added value";
import type { FragmentReference } from "relay-runtime";
declare export opaque type BookingSecondaryInfo_booking$ref: FragmentReference;
declare export opaque type BookingSecondaryInfo_booking$fragmentType: BookingSecondaryInfo_booking$ref;
export type BookingSecondaryInfo_booking = {|
+bookingDate: ?any,
+passengerCount: ?number,
+status: ?BookingStatus,
+$refType: BookingSecondaryInfo_booking$ref,
|};
export type BookingSecondaryInfo_booking$data = BookingSecondaryInfo_booking;
export type BookingSecondaryInfo_booking$key = {
+$data?: BookingSecondaryInfo_booking$data,
+$fragmentRefs: BookingSecondaryInfo_booking$ref,
};
*/
const node/*: ReaderFragment*/ = {
"kind": "Fragment",
"name": "BookingSecondaryInfo_booking",
"type": "BookingInterface",
"metadata": null,
"argumentDefinitions": [],
"selections": [
{
"kind": "ScalarField",
"alias": null,
"name": "bookingDate",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "passengerCount",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "status",
"args": null,
"storageKey": null
}
]
};
// prettier-ignore
(node/*: any*/).hash = '78dfc2fa4657eed48f254605dd5d7244';
module.exports = node;