fetchQueryWithPagination
Fetch data from Airstack by calling queries to the Airstack API with pagination included. If you don't need pagination, use fetchQuery instead.
Last updated
Was this helpful?
Fetch data from Airstack by calling queries to the Airstack API with pagination included. If you don't need pagination, use fetchQuery instead.
Last updated
Was this helpful?
Param | Type | Default Value | Description |
---|---|---|---|
Param | Type | Default Value | Description |
---|---|---|---|
query
string
Airstack GraphQL query
variables
Record<string, any>
GraphQL query variables
data
any?
Response data from GraphQL query
if API call succeeds.
error
any?
Error logs from GraphQL query if API call failed.
hasNextPage
boolean
false
Indicate if there is any following page.
hasPrevPage
boolean
false
getNextPage
() => Promise<FetchQuery | null>
Function to get data in the next page.
getPrevPage
() => Promise<FetchQuery | null>
Function to get data in the previous page.