Upload remote images to Cloudinary
Use `createRemoteImageNode to upload remote images to Cloudinary.
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"] ) } } }
Remote image
Query
query { project(name: { eq: "Project Example Two" }) { coverImage { gatsbyImageData( layout: CONSTRAINED height: 300 aspectRatio: 0.8 placeholder: BLURRED transformations: ["c_thumb"] chained: ["t_gatsby-demo"] ) } } }