Skip to content

dipankarmaikap/wp-graphql-image-dataurl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WPGraphQl Image DataUrl Plugin

This is an extension to the WPGraphQL plugin (https://github.com/wp-graphql/wp-graphql) that Generate DataUrl of MediaItems.

Using this plugin? I would love to see what you make with it. 😃 @maikap_dipankar

Quick Install

  • Install & activate WPGraphQL
  • Install from the WordPress Plugin Directory
  • Clone or download the zip of this repository into your WordPress plugin directory & activate the WPGraphQl Image DataUrl plugin

Find this useful?

Buy Me A Coffee

Usage

To query for the DataUrl simply add the dataUrl to your MediaItem:

Featured Image

query GetPostByID($id: ID!) {
  post(id: $id, idType: ID) {
    title
    uri
    featuredImage {
      node {
        id
        altText
        sourceUrl
        dataUrl
      }
    }
  }
}

This will then give you a result as such:

{
  "data": {
    "post": {
      "title": "In doloremque dolor velit assumenda",
      "uri": "/2022/01/26/in-doloremque-dolor-velit-assumenda/",
      "featuredImage": {
        "node": {
          "id": "cG9zdDoxNTg=",
          "altText": "",
          "sourceUrl": "https://domain.com/.../01/e31cd4f05614.png",
          "dataUrl": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUg..."
        }
      }
    }
  }
}
or
{
  "data": {
    "post": {
      "title": "In doloremque dolor velit assumenda",
      "uri": "/2022/01/26/in-doloremque-dolor-velit-assumenda/",
      "featuredImage": null
    }
  }
}

MediaItem

query GetMediaByUrl($id: ID!) {
  mediaItem(id: $id, idType: ID) {
    id
    altText
    sourceUrl
    dataUrl
  }
}

This will then give you a result as such:

{
  "data": {
    "mediaItem": {
      "id": "cG9zdDoxNjg=",
      "altText": "",
      "sourceUrl": "https://domain.com/wp-content/.../01/5ba99765.png",
      "dataUrl": "data:image/jpg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD//g..."
    }
  }
}
or
{
  "data": {
    "mediaItem": {
      "id": "cG9zdDoxNjg=",
      "altText": "",
      "sourceUrl": null,
      "dataUrl": null
    }
  }
}

Contributions

Contributions are welcome :). This was a very quick build. Feel free to make a PR against this repo!

Open an issue

@maikap_dipankar

About

This is an extension to the WPGraphQL plugin for Image DataUrl

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages