
Query
query {
image: file(name: { eq: "sergey-semin-unsplash" }) {
cloudinary: childCloudinaryAsset {
gatsbyImageData(height: 300, layout: FIXED)
}
}
}
Create avatars from any image
Query
query {
image: file(name: { eq: "sergey-semin-unsplash" }) {
cloudinary: childCloudinaryAsset {
gatsbyImageData(
height: 300
aspectRatio: 0.8
layout: FIXED
transformations: ["c_thumb", "g_face"]
)
}
}
}
Existing Data
Query
query {
blogPost(title: { eq: "Blog Post Example One" }) {
heroImage {
gatsbyImageData(
height: 300
layout: FIXED
transformations: ["e_grayscale"]
placeholder: BLURRED
)
}
}
}
Remote image
Query
query {
project(name: { eq: "Project Example One" }) {
coverImage {
gatsbyImageData(
layout: FIXED
height: 300
aspectRatio: 1
placeholder: TRACED_SVG
transformations: ["c_crop", "e_pixelate_faces"]
)
}
}
}
Lazy-loaded animated GIFs!
Query
query {
image: file(name: { eq: "giphyCat" }) {
cloudinary: childCloudinaryAsset {
gatsbyImageData(layout: CONSTRAINED, placeholder: BLURRED)
}
}
}