Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
constructive-io avatar

Orm Objects

  • 2 installs
  • 52 repo stars
  • Updated August 5, 2026
  • constructive-io/constructive

ORM client for the objects API providing typed CRUD operations for 5 tables and 4 custom operations.

About

ormobjects ORM client for the objects API provides typed CRUD operations for 5 tables and 4 custom operations.. Enables database access to object entities.

  • Typed CRUD operations for objects
  • Database layer for objects API

Orm Objects by the numbers

  • 2 all-time installs (skills.sh)
  • Ranked #3,774 of 4,347 Backend & APIs skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/constructive-io/constructive --skill orm-objects

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2
repo stars52
Last updatedAugust 5, 2026
Repositoryconstructive-io/constructive

What it does

ORM client for the objects API providing typed CRUD operations for 5 tables and 4 custom operations.

Files

SKILL.mdMarkdownGitHub ↗

orm-objects

<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->

ORM client for the objects API — provides typed CRUD operations for 5 tables and 4 custom operations

Usage

// Import the ORM client
import { db } from './orm';

// Available models: getAllRecord, ref, store, object, commit
db.<model>.findMany({ select: { id: true } }).execute()
db.<model>.findOne({ id: '<UUID>', select: { id: true } }).execute()
db.<model>.create({ data: { ... }, select: { id: true } }).execute()
db.<model>.update({ where: { id: '<UUID>' }, data: { ... }, select: { id: true } }).execute()
db.<model>.delete({ where: { id: '<UUID>' } }).execute()

Examples

Query records

const items = await db.getAllRecord.findMany({
  select: { id: true }
}).execute();

References

See the references/ directory for detailed per-entity API documentation:

  • get-all-record
  • ref
  • store
  • object
  • commit
  • init-empty-repo
  • set-data-at-path
  • insert-node-at-path
  • provision-bucket

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.