github
1388 of 2842 branches covered (48.84%)
25 of 2297 new or added lines in 45 files covered. (1.09%)
1 existing line in 1 file now uncovered.14099 of 81628 relevant lines covered (17.27%)
1.72 hits per line
NEW
|
export const QuerySortedKeys = [ |
|
NEW
|
'select', |
× |
NEW
|
'join', |
× |
NEW
|
'where', |
× |
NEW
|
'orderBy', |
× |
NEW
|
'groupBy', |
× |
NEW
|
'limit', |
× |
NEW
|
'offset', |
× |
NEW
|
'aggregation', |
× |
NEW
|
] as const;
|
× |
NEW
|
|
× |
NEW
|
export const QuerySortedKeysMap = QuerySortedKeys.reduce( |
× |
NEW
|
(acc, key, index) => { |
× |
NEW
|
acc[key] = index; |
× |
NEW
|
return acc;
|
× |
NEW
|
}, |
× |
NEW
|
{} as Record<string, number>
|
× |
NEW
|
); |
× |