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' }, });
useGetItineraryQuery
To run a query within a React component, call
useGetItineraryQueryand pass it any options that fit your needs. When your component renders,useGetItineraryQueryreturns an object from Apollo Client that contains loading, error, and data properties you can use to render your UI.Example