diff --git a/src/framework/query/QueryBuilder.ts b/src/framework/query/QueryBuilder.ts index 43be677..ce1464d 100644 --- a/src/framework/query/QueryBuilder.ts +++ b/src/framework/query/QueryBuilder.ts @@ -634,24 +634,4 @@ export class QueryBuilder { } return cloned; } - - // Additional getters for testing - getCursor(): string | undefined { - return this.cursorValue; - } - - getCacheOptions(): any { - return { - enabled: this.cacheEnabled, - ttl: this.cacheTtl, - key: this.cacheKey - }; - } - - getRelationships(): any[] { - return this.relations.map(relation => ({ - relation, - constraints: this._relationshipConstraints?.get(relation) - })); - } }