Tag: infinite-scroll
-
NextJs update GraphQL pagination limit with Apollo Client
0 I would like to update my exisiting Graphql Query to create a infinite Scroll in NextJs. But I don’t know how to setup the update Function for the pagination limit. What I have know: Apollo Client: import { ApolloClient, InMemoryCache } from "@apollo/client"; const client = new ApolloClient({ uri: process.env.API_ENDPOINT, cache: new InMemoryCache(), });…