()
| 1932 | } |
| 1933 | |
| 1934 | ignore(): this { |
| 1935 | if (!this.#state.onConflict) { |
| 1936 | throw new Error('You need to call `qb.onConflict()` first to use `qb.ignore()`'); |
| 1937 | } |
| 1938 | |
| 1939 | this.#state.onConflict[this.#state.onConflict.length - 1].ignore = true; |
| 1940 | return this; |
| 1941 | } |
| 1942 | |
| 1943 | merge<const P extends string>(data: readonly NestedAutoPath<Entity, RootAlias, Context, P>[]): this; |
| 1944 | merge<F extends Field<Entity, RootAlias, Context>>(data?: EntityData<Entity> | F[]): this; |
no outgoing calls
no test coverage detected