Get Meme
You could get details of pusining meme whether its paginated or not
GraphQL
Getting memes
query {
memes {
id
title
image_link
category
}
}Paginated memes
Get a list of memes with limit and offset.
query getPaginatedMeme {
memes(limit: 10, offset: 0) {
id
category
title
}
}Updating a pet
Required scopes
This endpoint requires the following scopes:
- : read your pets
- : modify pets in your account
Authorizations
OAuth2implicitRequired
Authorization URL:
Body
idinteger · int64Optional
namestringRequiredExample:
doggiephotoUrlsstring[]Required
statusstring · enumOptionalPossible values:
pet status in the store
Responses
400
Invalid ID supplied
No content
404
Pet not found
405
Validation exception
put
/petNo content
Last updated
