I’m looking for global feed pagination settings I wrote these codes and those are not working
const data = await fetch(`${apiURL}me/global-feeds?` + new URLSearchParams({
"targetId": id,
"targetType": "community",
"limit": 100,
"offset": 10, // tried not working on me
"skip": 10, // tried not working on me
}), {
method: "GET",
headers: {
...defaultHeaders, "Authorization": `Bearer ${token}`
}
})
How can I skip posts or use pagination