Get Meme

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

Update an existing pet

put
/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: doggie
photoUrlsstring[]Required
statusstring · enumOptional

pet status in the store

Possible values:
Responses
400

Invalid ID supplied

No content

put
/pet

No content

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.

Last updated