From 1e3c5d46be354bdc6f1b0bbec7740ff14d33c397 Mon Sep 17 00:00:00 2001 From: anonpenguin Date: Thu, 19 Jun 2025 21:30:21 +0300 Subject: [PATCH] refactor: Remove unused getters from QueryBuilder class --- src/framework/query/QueryBuilder.ts | 20 -------------------- 1 file changed, 20 deletions(-) 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) - })); - } }