(path: string)
| 33 | } |
| 34 | |
| 35 | const dottedToAccess = (path: string) => |
| 36 | path |
| 37 | .split(".") |
| 38 | .map((p, i) => i === 0 ? p : `["${p}"]`) |
| 39 | .join("") |
| 40 | |
| 41 | export function buildWhereCosmosQuery3( |
| 42 | idKey: PropertyKey, |
no test coverage detected
searching dependent graphs…