``` 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
    topics: { connect: { name : "Productivity", slug: "productivity" } }
  }) {
    id
  }
}