penguin-beta-version-1.5 #3

Merged
anonpenguin merged 30 commits from sotiris-beta-version-1.5 into main 2025-07-05 02:53:30 +00:00
Showing only changes of commit 1e3c5d46be - Show all commits

View File

@ -634,24 +634,4 @@ export class QueryBuilder<T extends BaseModel> {
}
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)
}));
}
}