• useGetItineraryQuery

    To run a query within a React component, call useGetItineraryQuery and pass it any options that fit your needs. When your component renders, useGetItineraryQuery 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 } = useGetItineraryQuery({
    variables: {
    id: // value for 'id'
    },
    });

    Parameters

    Returns QueryResult<GetItineraryQuery, Exact<{
        id: string;
    }>>

Generated using TypeDoc