Home / Type/ NoUnknownKeys Type — drizzle-orm Architecture

NoUnknownKeys Type — drizzle-orm Architecture

Architecture documentation for the NoUnknownKeys type/interface in schema.types.internal.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  e7a15e40_6799_cd68_68c1_a47c525cef05["NoUnknownKeys"]
  acfeaa81_8bd9_605a_74e7_52a36a49babb["schema.types.internal.ts"]
  e7a15e40_6799_cd68_68c1_a47c525cef05 -->|defined in| acfeaa81_8bd9_605a_74e7_52a36a49babb
  style e7a15e40_6799_cd68_68c1_a47c525cef05 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-zod/src/schema.types.internal.ts lines 68–76

export type NoUnknownKeys<
	TRefinement extends Record<string, any>,
	TCompare extends Record<string, any>,
> = {
	[K in keyof TRefinement]: K extends keyof TCompare
		? TRefinement[K] extends Record<string, z.ZodType> ? NoUnknownKeys<TRefinement[K], TCompare[K]>
		: TRefinement[K]
		: DrizzleTypeError<`Found unknown key in refinement: "${K & string}"`>;
};

Frequently Asked Questions

What is the NoUnknownKeys type?
NoUnknownKeys is a type/interface in the drizzle-orm codebase, defined in drizzle-zod/src/schema.types.internal.ts.
Where is NoUnknownKeys defined?
NoUnknownKeys is defined in drizzle-zod/src/schema.types.internal.ts at line 68.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free