Skip to main content

UseQuery

useQuery

A React hook which provides access to the results of a GraphQL query.

Example

import { useQuery } from '@vendure/admin-ui/react';
import { gql } from 'graphql-tag';

const GET_PRODUCT = gql`
query GetProduct($id: ID!) {
product(id: $id) {
id
name
description
}
}`;

export const MyComponent = () => {
const { data, loading, error } = useQuery(GET_PRODUCT, { id: '1' });

if (loading) return <div>Loading...</div>;
if (error) return <div>Error! { error }</div>;
return (
<div>
<h1>{data.product.name}</h1>
<p>{data.product.description}</p>
</div>
);
};
Signature
function useQuery<T, V extends Record<string, any> = Record<string, any>>(query: DocumentNode | TypedDocumentNode<T, V>, variables?: V): void

Parameters

query

parameter
DocumentNode | TypedDocumentNode<T, V>

variables

parameter
V