findIndexForField

Function: findIndexForField()

ts
function findIndexForField<TKey>(
   collection, 
   fieldPath, 
   compareOptions?): 
  | IndexInterface<TKey>
  | undefined;

Defined in: packages/db/src/utils/index-optimization.ts:37

Finds an index that matches a given field path

Type Parameters

TKey

TKey extends string | number

Parameters

collection

CollectionLike<any, TKey>

fieldPath

string[]

compareOptions?

CompareOptions

Returns

| IndexInterface<TKey> | undefined