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
- 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
To query for the DataUrl simply add the dataUrl
to your MediaItem:
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
}
}
}
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 are welcome :). This was a very quick build. Feel free to make a PR against this repo!