@@ -13,7 +13,7 @@ import { type FilterQueryDataloader } from "./EntityDataLoader";
13
13
import { type PartialBy } from "./types" ;
14
14
15
15
export function groupPrimaryKeysByEntity < T extends AnyEntity < T > > (
16
- refs : ReadonlyArray < Reference < T > > ,
16
+ refs : Array < Reference < T > > ,
17
17
) : Map < string , Set < Primary < T > > > {
18
18
const map = new Map < string , Set < Primary < T > > > ( ) ;
19
19
for ( const ref of refs ) {
@@ -29,7 +29,7 @@ export function groupPrimaryKeysByEntity<T extends AnyEntity<T>>(
29
29
}
30
30
31
31
export function groupInversedOrMappedKeysByEntity < T extends AnyEntity < T > > (
32
- collections : ReadonlyArray < Collection < T , AnyEntity > > ,
32
+ collections : Array < Collection < T , AnyEntity > > ,
33
33
) : Map < string , Map < string , Set < Primary < T > > > > {
34
34
const entitiesMap = new Map < string , Map < string , Set < Primary < T > > > > ( ) ;
35
35
for ( const col of collections ) {
@@ -219,7 +219,7 @@ export interface DataloaderFind<K extends object, Hint extends string = never, F
219
219
}
220
220
221
221
export function groupFindQueries (
222
- dataloaderFinds : ReadonlyArray < PartialBy < DataloaderFind < any , any > , "filtersAndKeys" > > ,
222
+ dataloaderFinds : Array < PartialBy < DataloaderFind < any , any > , "filtersAndKeys" > > ,
223
223
) : Map < string , [ FilterQueryDataloader < any > , { populate ?: true | Set < any > } ?] > {
224
224
const queriesMap = new Map < string , [ FilterQueryDataloader < any > , { populate ?: true | Set < any > } ?] > ( ) ;
225
225
for ( const dataloaderFind of dataloaderFinds ) {
@@ -242,8 +242,8 @@ export function groupFindQueries(
242
242
}
243
243
244
244
export function assertHasNewFilterAndMapKey (
245
- dataloaderFinds : ReadonlyArray < PartialBy < DataloaderFind < any , any > , "filtersAndKeys" > > ,
246
- ) : asserts dataloaderFinds is ReadonlyArray < DataloaderFind < any , any > > {
245
+ dataloaderFinds : Array < PartialBy < DataloaderFind < any , any > , "filtersAndKeys" > > ,
246
+ ) : asserts dataloaderFinds is Array < DataloaderFind < any , any > > {
247
247
/* if (dataloaderFinds.some((el) => el.key == null || el.newFilter == null)) {
248
248
throw new Error("Missing key or newFilter");
249
249
} */
0 commit comments