```mutation { createPost( description: "Grea...
# prisma-whats-new
d
Copy code
mutation {
  createPost(
    description: "Great sunset"
    imageUrl: "<http://example.org/sunset.png>"
    authorId: "cja78afsqjqd40156aeea8prj" # replace with the `id` of the `User` you created before
  ) {
    id
  }
}