• useGetProfileQuery

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

    Parameters

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

Generated using TypeDoc