Back to Pocketbase

Function hashExp

static/jsvm/functions/_dbx.hashExp.html

latest901 B
Original Source

Function hashExp

HashExp represents a hash expression.

A hash expression is a map whose keys are DB column names which need to be filtered according to the corresponding values. For example, HashExp{"level": 2, "dept": 10} will generate the SQL: "level"=2 AND "dept"=10.

HashExp also handles nil values and slice values. For example, HashExp{"level": []interface{}{1, 2}, "dept": nil} will generate: "level" IN (1, 2) AND "dept" IS NULL.

Parameters

pairs: { [key: string]: any; }
- 
[key: string]: any

Returns Expression

Settings

Member Visibility

  • Inherited

Theme

OSLightDark

Generated using TypeDoc