I use the following mutation for inserting an image into a post.
mutation MyMutation {
createPost(
data: {title: "", excerpt: "", content: "", postid: "", featuredImage: {create: {fileName: "", handle: ""}}, author: {connect: {Author: {email: ""}}}}
)
}
But I don't know what the handle of the image should be. In react what should be the value of handle attribute of the featured image?