Function useFindItineraryLocationsByPlaceIdQuery

  • useFindItineraryLocationsByPlaceIdQuery

    To run a query within a React component, call useFindItineraryLocationsByPlaceIdQuery and pass it any options that fit your needs. When your component renders, useFindItineraryLocationsByPlaceIdQuery returns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.

    Example

    const { data, loading, error } = useFindItineraryLocationsByPlaceIdQuery({
    variables: {
    itineraryId: // value for 'itineraryId'
    placeId: // value for 'placeId'
    first: // value for 'first'
    after: // value for 'after'
    },
    });

    Parameters

    Returns QueryResult<FindItineraryLocationsByPlaceIdQuery, Exact<{
        after?: InputMaybe<string>;
        first: number;
        itineraryId: string;
        placeId: string;
    }>>

Generated using TypeDoc