GetPlaceQuery: {
    __typename?: "Query";
    place?: {
        __typename: "Place";
        address: {
            __typename?: "PlaceAddress";
            addressLineOne?: string | null;
            addressLineThree?: string | null;
            addressLineTwo?: string | null;
            country?: string | null;
            countryCode?: string | null;
            locality?: string | null;
            region?: string | null;
            regionCode?: string | null;
        };
        contact: {
            __typename?: "PlaceContact";
            bookingUrl?: string | null;
            emailAddress?: string | null;
            facebookUrl?: string | null;
            instagramUrl?: string | null;
            phoneNumber?: string | null;
            twitterUrl?: string | null;
            websiteUrl?: string | null;
        };
        description?: string | null;
        id: string;
        layers: {
            __typename: "PlaceLayer";
            id: string;
            name?: string | null;
        }[];
        maki?: string | null;
        name?: string | null;
        position: {
            __typename?: "Position";
            lat: number;
            lon: number;
        };
        synopsis?: string | null;
    } | null;
}

Type declaration

  • Optional __typename?: "Query"
  • Optional place?: {
        __typename: "Place";
        address: {
            __typename?: "PlaceAddress";
            addressLineOne?: string | null;
            addressLineThree?: string | null;
            addressLineTwo?: string | null;
            country?: string | null;
            countryCode?: string | null;
            locality?: string | null;
            region?: string | null;
            regionCode?: string | null;
        };
        contact: {
            __typename?: "PlaceContact";
            bookingUrl?: string | null;
            emailAddress?: string | null;
            facebookUrl?: string | null;
            instagramUrl?: string | null;
            phoneNumber?: string | null;
            twitterUrl?: string | null;
            websiteUrl?: string | null;
        };
        description?: string | null;
        id: string;
        layers: {
            __typename: "PlaceLayer";
            id: string;
            name?: string | null;
        }[];
        maki?: string | null;
        name?: string | null;
        position: {
            __typename?: "Position";
            lat: number;
            lon: number;
        };
        synopsis?: string | null;
    } | null

Generated using TypeDoc