원클릭으로
hooks-admin
React Query hooks for the admin API — provides typed query and mutation hooks for 30 tables and 12 custom operations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
React Query hooks for the admin API — provides typed query and mutation hooks for 30 tables and 12 custom operations
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build interactive CLI tools with the Constructive CLI SDK. Use when asked to "create a CLI", "build a command-line tool", "add CLI prompts", "create interactive prompts", "store CLI config", "add terminal colors", or when building any CLI application in a Constructive project. This package provides runtime utilities for type coercion, config management, display formatting, and command handler patterns used by generated and custom CLIs.
The _meta schema-introspection plugin for PostGraphile v5 (MetaSchemaPlugin / MetaSchemaPreset in graphile-settings). Exposes a single _meta root query describing every table's fields, indexes, constraints, relations, inflection names, root query/mutation names, and smart-tag-derived metadata (storage, search, i18n, realtime). Use when asked to "expose database metadata in GraphQL", "add a field to _meta", "understand the _meta query", "drive codegen from _meta", or when adding a new smart-tag-detected metadata builder to the meta-schema plugin.
CLI tool (csdk) for the api API — provides CRUD commands for 47 tables and 9 custom operations
CLI tool (csdk) for the auth API — provides CRUD commands for 13 tables and 35 custom operations
CLI tool (csdk) for the compute API — provides CRUD commands for 65 tables and 29 custom operations
CLI tool (csdk) for the config API — provides CRUD commands for 5 tables and 13 custom operations
| name | hooks-admin |
| description | React Query hooks for the admin API — provides typed query and mutation hooks for 30 tables and 12 custom operations |
React Query hooks for the admin API — provides typed query and mutation hooks for 30 tables and 12 custom operations
// Import hooks
import { useAppAdminGrantsQuery } from './hooks';
// Query hooks: use<Model>Query, use<Model>sQuery
// Mutation hooks: useCreate<Model>Mutation, useUpdate<Model>Mutation, useDelete<Model>Mutation
// Bulk mutation hooks (when enabled): useBulkCreate<Model>Mutation, useBulkUpsert<Model>Mutation, etc.
const { data, isLoading } = useAppAdminGrantsQuery({
selection: { fields: { id: true } },
});
const { data, isLoading } = useAppAdminGrantsQuery({
selection: { fields: { id: true } },
});
See the references/ directory for detailed per-entity API documentation: