/** * @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 ConfirmationMapPostalAddressMapGeocodeQuery$variables = { input: PostalAddressInput; }; export type ConfirmationMapPostalAddressMapGeocodeQuery$data = { readonly geocode: { readonly " $fragmentSpreads": FragmentRefs<"DataMapCoordinatesFragment">; } | null | undefined; }; export type ConfirmationMapPostalAddressMapGeocodeQuery = { response: ConfirmationMapPostalAddressMapGeocodeQuery$data; variables: ConfirmationMapPostalAddressMapGeocodeQuery$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": "ConfirmationMapPostalAddressMapGeocodeQuery", "selections": [ { "alias": null, "args": (v1/*: any*/), "concreteType": "GeoCoordinates", "kind": "LinkedField", "name": "geocode", "plural": false, "selections": [ { "args": null, "kind": "FragmentSpread", "name": "DataMapCoordinatesFragment" } ], "storageKey": null } ], "type": "Query", "abstractKey": null }, "kind": "Request", "operation": { "argumentDefinitions": (v0/*: any*/), "kind": "Operation", "name": "ConfirmationMapPostalAddressMapGeocodeQuery", "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": "270e6306b030e17ea9bbf479e4098926", "id": null, "metadata": {}, "name": "ConfirmationMapPostalAddressMapGeocodeQuery", "operationKind": "query", "text": "query ConfirmationMapPostalAddressMapGeocodeQuery(\n $input: PostalAddressInput!\n) {\n geocode(input: $input) {\n ...DataMapCoordinatesFragment\n }\n}\n\nfragment DataMapCoordinatesFragment on GeoCoordinates {\n latitude\n longitude\n}\n" } }; })(); (node as any).hash = "a87965a0e5fd4eaa26940d1b00648cda"; export default node;