Pascal Thormeier & Stefan Huber · Switzerland
Hand over to @thor
const card = {
uuid: String, // ← ID for mutations
deleted: Boolean, // ← Used to tell others to delete the card
session: String, // ← = Hash in URL
text: String, // ← Content
color: Number, // ← 🏳️🌈
x: Number, // ← Position
y: Number // ← Position
}
domain.xyz/board/?id=RftPD3Go
const mutation = [{
type: 'card', // ← type of mutation
uuid: '...', // ← card to update
x: 15, // ← New position
y: 48 // ← New position
}]