@kiwicom/smart-faq
Version:
60 lines (54 loc) • 1.31 kB
JavaScript
/**
* @flow
*/
/* eslint-disable */
;
/*::
import type { ReaderFragment } from 'relay-runtime';
import type { FragmentReference } from "relay-runtime";
declare export opaque type CustomerSupportNumberMobile$ref: FragmentReference;
export type CustomerSupportNumberMobile = {|
+customerSupportNumber: ?{|
+localeTerritory: ?string,
+number: ?string,
|},
+$refType: CustomerSupportNumberMobile$ref,
|};
*/
const node/*: ReaderFragment*/ = {
"kind": "Fragment",
"name": "CustomerSupportNumberMobile",
"type": "RootQuery",
"metadata": null,
"argumentDefinitions": [],
"selections": [
{
"kind": "LinkedField",
"alias": null,
"name": "customerSupportNumber",
"storageKey": null,
"args": null,
"concreteType": "CustomerSupportNumber",
"plural": false,
"selections": [
{
"kind": "ScalarField",
"alias": null,
"name": "localeTerritory",
"args": null,
"storageKey": null
},
{
"kind": "ScalarField",
"alias": null,
"name": "number",
"args": null,
"storageKey": null
}
]
}
]
};
// prettier-ignore
(node/*: any*/).hash = 'a7b8a50ccf4db4fbae63fcc7e7529b7c';
module.exports = node;