MCPcopy Create free account
hub / github.com/mikro-orm/mikro-orm / unsetFlag

Method unsetFlag

packages/sql/src/query/QueryBuilder.ts:2047–2051  ·  view source on GitHub ↗
(flag: QueryFlag)

Source from the content-addressed store, hash-verified

2045 }
2046
2047 unsetFlag(flag: QueryFlag): this {
2048 this.ensureNotFinalized();
2049 this.#state.flags.delete(flag);
2050 return this;
2051 }
2052
2053 hasFlag(flag: QueryFlag): boolean {
2054 return this.#state.flags.has(flag);

Callers

nothing calls this directly

Calls 2

ensureNotFinalizedMethod · 0.95
deleteMethod · 0.65

Tested by

no test coverage detected