| 324 | | { |
| 325 | readonly _tag: "relation-length" |
| 326 | readonly path: string |
| 327 | } |
| 328 | ) |
| 329 | |
| 330 | type NoExtraComputedKeys<M extends ComputedProjectionMap, I> = string extends keyof M ? unknown |
| 331 | : Exclude<keyof M, KeysOfUnion<I>> extends never ? unknown |
| 332 | : never |
| 333 | |
| 334 | /** |
| 335 | * An expression that aggregates values across documents (for use with {@link aggregate}). |
| 336 | * `agg-field` references a document field to group by; other tags are aggregate functions. |
| 337 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected