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
Authorizations
Body
idinteger · int64Optional
namestringRequiredExample:
doggie
photoUrlsstring[]Required
statusstring · enumOptionalPossible values:
pet status in the store
Responses
400
Invalid ID supplied
404
Pet not found
405
Validation exception
put
PUT /v2/pet HTTP/1.1
Host: petstore.swagger.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 132
{
"id": 1,
"category": {
"id": 1,
"name": "text"
},
"name": "doggie",
"photoUrls": [
"text"
],
"tags": [
{
"id": 1,
"name": "text"
}
],
"status": "available"
}
No content
Last updated