MCPcopy
hub / github.com/knex/knex / QueryInterface

Interface QueryInterface

types/knex.d.ts:72–217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70 //
71
72 interface QueryInterface {
73 select: Select;
74 as: As;
75 columns: Select;
76 column: Select;
77 from: Table;
78 into: Table;
79 table: Table;
80 distinct: Distinct;
81
82 // Joins
83 join: Join;
84 joinRaw: JoinRaw;
85 innerJoin: Join;
86 leftJoin: Join;
87 leftOuterJoin: Join;
88 rightJoin: Join;
89 rightOuterJoin: Join;
90 outerJoin: Join;
91 fullOuterJoin: Join;
92 crossJoin: Join;
93
94 // Withs
95 with: With;
96 withRaw: WithRaw;
97 withSchema: WithSchema;
98 withWrapped: WithWrapped;
99
100 // Wheres
101 where: Where;
102 andWhere: Where;
103 orWhere: Where;
104 whereNot: Where;
105 andWhereNot: Where;
106 orWhereNot: Where;
107 whereRaw: WhereRaw;
108 orWhereRaw: WhereRaw;
109 andWhereRaw: WhereRaw;
110 whereWrapped: WhereWrapped;
111 havingWrapped: WhereWrapped;
112 whereExists: WhereExists;
113 orWhereExists: WhereExists;
114 whereNotExists: WhereExists;
115 orWhereNotExists: WhereExists;
116 whereIn: WhereIn;
117 orWhereIn: WhereIn;
118 whereNotIn: WhereIn;
119 orWhereNotIn: WhereIn;
120 whereNull: WhereNull;
121 orWhereNull: WhereNull;
122 whereNotNull: WhereNull;
123 orWhereNotNull: WhereNull;
124 whereBetween: WhereBetween;
125 orWhereBetween: WhereBetween;
126 andWhereBetween: WhereBetween;
127 whereNotBetween: WhereBetween;
128 orWhereNotBetween: WhereBetween;
129 andWhereNotBetween: WhereBetween;

Callers 84

builder.jsFile · 0.80
builder.jsFile · 0.80
builder.jsFile · 0.80
builder.jsFile · 0.80
selects.jsFile · 0.80
builder.jsFile · 0.80
joins.jsFile · 0.80
additional.jsFile · 0.80
builder.jsFile · 0.80
updateFunction · 0.80
firstFunction · 0.80
aggregate.jsFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…