LogoLogo
  • ๐Ÿš€Rocketmeme API
  • ๐Ÿ’›Get Started
  • Reference
    • Get Meme
    • Get Memes
    • Get Memes Categories
    • Memes Search
    • Get Memes Templates
Powered by GitBook
On this page
  1. Reference

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

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.

PreviousGet StartedNextGet Memes

Last updated 3 years ago

  • GraphQL
  • Getting memes
  • Paginated memes
  • Updating a pet
  • PUTUpdate an existing pet

Update an existing pet

put
Authorizations
Body
idinteger ยท int64Optional
namestringRequiredExample: doggie
photoUrlsstring[]Required
statusstring ยท enumOptional

pet status in the store

Possible values:
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