UNPKG

trellis

Version:

Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications

13 lines (11 loc) 268 B
// src/schema/mutations.ts function entityMutations(client, schema) { return { create: (attrs) => client.create(schema.type, attrs), update: (id, attrs) => client.update(id, attrs), remove: (id) => client.delete(id) }; } export { entityMutations };