You could get details of pusining meme whether its paginated or not
GraphQL
Getting memes
query {
memes {
id
title
image_link
category
}
}
Good to know: These queries can be modified to get valid fields as needed
Paginated memes
Get a list of memes with limit and offset.
query getPaginatedMeme {
memes(limit: 10, offset: 0) {
id
category
title
}
}
Updating a pet
Good to know: This API method was auto-generated from an example Swagger file. You'll see that it's not editable โ that's because the contents are synced to an URL! Any time the linked file changes, the documentation will change too.