MCPcopy Create free account
hub / github.com/TanStack/db / constructor

Method constructor

packages/db/src/query/ir.ts:135–139  ·  view source on GitHub ↗
(
    public path: Array<string>, // path to the property in the collection, with the alias as the first element
  )

Source from the content-addressed store, hash-verified

133export class PropRef<T = any> extends BaseExpression<T> {
134 public type = `ref` as const
135 constructor(
136 public path: Array<string>, // path to the property in the collection, with the alias as the first element
137 ) {
138 super()
139 }
140}
141
142export class Value<T = any> extends BaseExpression<T> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected