| 44 | * we avoid race conditions from concurrent queries sharing global state. |
| 45 | */ |
| 46 | export class QueryContext<TSchema extends GraphSchema = GraphSchema> { |
| 47 | readonly #params: QueryParams; |
| 48 | readonly #graph: GraphSource<TSchema>; |
| 49 | readonly #options: Required<QueryContextOptions>; |
nothing calls this directly
no outgoing calls
no test coverage detected