/** * @generated SignedSource<> * @lightSyntaxTransform * @nogrep */ /* tslint:disable */ /* eslint-disable */ // @ts-nocheck import { ConcreteRequest, Query } from 'relay-runtime'; import { FragmentRefs } from "relay-runtime"; export type PostalAddressInput = { addressCountry?: string | null | undefined; addressLocality?: string | null | undefined; addressRegion?: string | null | undefined; postalCode?: string | null | undefined; streetAddress?: string | null | undefined; }; export type ConfirmationMapGeocodeQuery$variables = { input: PostalAddressInput; }; export type ConfirmationMapGeocodeQuery$data = { readonly geocode: { readonly " $fragmentSpreads": FragmentRefs<"ConfirmationMapChildrenHiddenInputsFragment">; } | null | undefined; }; export type ConfirmationMapGeocodeQuery = { response: ConfirmationMapGeocodeQuery$data; variables: ConfirmationMapGeocodeQuery$variables; }; const node: ConcreteRequest = (function(){ var v0 = [ { "defaultValue": null, "kind": "LocalArgument", "name": "input" } ], v1 = [ { "kind": "Variable", "name": "input", "variableName": "input" } ]; return { "fragment": { "argumentDefinitions": (v0/*: any*/), "kind": "Fragment", "metadata": null, "name": "ConfirmationMapGeocodeQuery", "selections": [ { "alias": null, "args": (v1/*: any*/), "concreteType": "GeoCoordinates", "kind": "LinkedField", "name": "geocode", "plural": false, "selections": [ { "args": null, "kind": "FragmentSpread", "name": "ConfirmationMapChildrenHiddenInputsFragment" } ], "storageKey": null } ], "type": "Query", "abstractKey": null }, "kind": "Request", "operation": { "argumentDefinitions": (v0/*: any*/), "kind": "Operation", "name": "ConfirmationMapGeocodeQuery", "selections": [ { "alias": null, "args": (v1/*: any*/), "concreteType": "GeoCoordinates", "kind": "LinkedField", "name": "geocode", "plural": false, "selections": [ { "alias": null, "args": null, "kind": "ScalarField", "name": "latitude", "storageKey": null }, { "alias": null, "args": null, "kind": "ScalarField", "name": "longitude", "storageKey": null } ], "storageKey": null } ] }, "params": { "cacheID": "d6cf60d69caa5f56f1e679f6fdc49d8d", "id": null, "metadata": {}, "name": "ConfirmationMapGeocodeQuery", "operationKind": "query", "text": "query ConfirmationMapGeocodeQuery(\n $input: PostalAddressInput!\n) {\n geocode(input: $input) {\n ...ConfirmationMapChildrenHiddenInputsFragment\n }\n}\n\nfragment ConfirmationMapChildrenHiddenInputsFragment on GeoCoordinates {\n latitude\n longitude\n}\n" } }; })(); (node as any).hash = "f6314f654e9a9bae5249d620aa5bd3fc"; export default node;