To run a mutation, you first call useDeleteItineraryMutation within a React component and pass it any options that fit your needs.
When your component renders, useDeleteItineraryMutation returns a tuple that includes:
A mutate function that you can call at any time to execute the mutation
An object with fields that represent the current status of the mutation's execution
Example
const [deleteItineraryMutation, { data, loading, error }] = useDeleteItineraryMutation({ variables: { id:// value for 'id' }, });
useDeleteItineraryMutation
To run a mutation, you first call
useDeleteItineraryMutationwithin a React component and pass it any options that fit your needs. When your component renders,useDeleteItineraryMutationreturns a tuple that includes:Example