``` mutation { topic1: createTopic(data: { n...
# prisma-whats-new
l
Copy code
mutation {
  topic1: createTopic(data: {
    name: "Productivity"
    slug: "productivity"
  }) {
    id
  }
  product1: createProduct(data: {
    name: "Caramella"
    slug: "caramella"
    tagline: "A clean, modern blogging platform without the fuss"
    votes_count: 473
    comments_count: 28
  }) {
    id
  }
  product2: createProduct(data: {
    name: "Cover Letter Generator"
    slug: "cover-letter-generator"
    tagline: "Quickly generate cover letters with minimum details"
    votes_count: 313
    comments_count: 6
  }) {
    id
  }
}