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

Orm Admin

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

ORM client for the admin API providing typed CRUD operations for 37 tables and 15 custom operations.

About

ormadmin ORM client for the admin API provides typed CRUD operations for 37 tables and 15 custom operations.. Enables programmatic database access.

  • Import and use the ORM client
  • Typed CRUD operations for all admin entities

Orm Admin by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #3,830 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-admin

Add your badge

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

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

What it does

ORM client for the admin API providing typed CRUD operations for 37 tables and 15 custom operations.

Files

SKILL.mdMarkdownGitHub ↗

orm-admin

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

ORM client for the admin API — provides typed CRUD operations for 37 tables and 15 custom operations

Usage

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

// Available models: orgGetManagersRecord, orgGetSubordinatesRecord, appPermission, orgPermission, appLevelRequirement, orgMember, appPermissionDefault, orgPermissionDefault, ...
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.orgGetManagersRecord.findMany({
  select: { id: true }
}).execute();

References

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

  • org-get-managers-record
  • org-get-subordinates-record
  • app-permission
  • org-permission
  • app-level-requirement
  • org-member
  • app-permission-default
  • org-permission-default
  • app-admin-grant
  • app-owner-grant
  • app-achievement
  • app-step
  • org-admin-grant
  • org-owner-grant
  • membership-type
  • app-limit-default
  • org-limit-default
  • org-chart-edge-grant
  • app-claimed-invite
  • app-grant
  • app-membership-default
  • org-membership-default
  • org-claimed-invite
  • app-limit-event
  • org-limit-event
  • org-grant
  • org-chart-edge
  • app-limit
  • org-limit-aggregate
  • org-member-profile
  • org-limit
  • app-level
  • app-invite
  • org-membership-setting
  • org-invite
  • app-membership
  • org-membership
  • app-permissions-get-padded-mask
  • org-permissions-get-padded-mask
  • org-is-manager-of
  • app-permissions-get-mask
  • org-permissions-get-mask
  • steps-achieved
  • app-permissions-get-mask-by-names
  • org-permissions-get-mask-by-names
  • app-permissions-get-by-mask
  • org-permissions-get-by-mask
  • steps-required
  • submit-app-invite-code
  • submit-org-invite-code
  • request-upload-url
  • provision-bucket

Related skills

This week in AI coding

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

unsubscribe anytime.