Skip to content

Latest commit

 

History

History
55 lines (48 loc) · 1.91 KB

fetchquery.md

File metadata and controls

55 lines (48 loc) · 1.91 KB
description layout
The return type of the fetchQuery function comprises of the data, error logs, loading indicator, and pagination object.
title description tableOfContents outline pagination
visible
true
visible
true
visible
true
visible
visible
true

FetchQuery

Example

{
  "data": {},
  "error": {},
  "hasNextPage": true,
  "hasPrevPage": true,
  "getNextPage": () => {},
  "getPrevPage": () => {}
}

Type Signature

type FetchQuery = {
  data: any;
  error: any;
  hasNextPage: boolean;
  hasPrevPage: boolean;
  getNextPage: () => Promise<FetchQuery | null>;
  getPrevPage: () => Promise<FetchQuery | null>;
};

Fields

Param Type Default Value Description
data any? null Response data from GraphQL query if API call succeeds.
error any? null Error logs from GraphQL query if API call failed.
hasNextPage boolean false Indicate if there is any next page.
hasPrevPage boolean false Indicate if there is any previous page.
getNextPage () => Promise<FetchQuery | null> - Function to get data in the next page.
getPrevPage () => Promise<FetchQuery | null> - Function to get data in the previous page.