description |
layout |
Fetch data from Airstack by calling queries to the Airstack API with pagination included. If you don't need pagination, use useQuery instead. |
title |
description |
tableOfContents |
outline |
pagination |
|
|
|
|
|
|
useQueryWithPagination
import { useQueryWithPagination } from "@airstack/airstack-react";
const { data, error, hasNextPage, hasPrevPage, getNextPage, getPrevPage } =
useQueryWithPagination(query, variables);
function useQueryWithPagination(
query: string,
variables?: Variables
): useQueryWithPaginationReturnType
Param |
Type |
Default Value |
Description |
response |
UseQueryWithPaginationReturnType |
- |
Response from the hook that will return data, error logs, loading state, and pagination. |