await prisma.rocket.upsert({  
	where: { id: 1 },  
	update: { name: 'Falcon 9' },  
	create: { name: 'Falcon 9' },  
})  

UPSERT statement