Home / Function/ notLike() — drizzle-orm Function Reference

notLike() — drizzle-orm Function Reference

Architecture documentation for the notLike() function in conditions.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  02eac39e_6c8d_3342_494c_695599459a69["notLike()"]
  57e6e1af_7162_5b6e_bfcf_9d9935f60d31["conditions.ts"]
  02eac39e_6c8d_3342_494c_695599459a69 -->|defined in| 57e6e1af_7162_5b6e_bfcf_9d9935f60d31
  style 02eac39e_6c8d_3342_494c_695599459a69 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/sql/expressions/conditions.ts lines 551–553

export function notLike(column: Column | SQL.Aliased | SQL, value: string | SQLWrapper): SQL {
	return sql`${column} not like ${value}`;
}

Domain

Subdomains

Frequently Asked Questions

What does notLike() do?
notLike() is a function in the drizzle-orm codebase, defined in drizzle-orm/src/sql/expressions/conditions.ts.
Where is notLike() defined?
notLike() is defined in drizzle-orm/src/sql/expressions/conditions.ts at line 551.

Analyze Your Own Codebase

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

Try Supermodel Free