(value: Record<string, any>)
| 145 | } |
| 146 | |
| 147 | Vars(value: Record<string, any>) { |
| 148 | const vars = value; |
| 149 | return new QueryBuilder<M, CN, Q>( |
| 150 | this.collectionName, |
| 151 | // @ts-expect-error |
| 152 | { |
| 153 | ...this, |
| 154 | vars, |
| 155 | } |
| 156 | ); |
| 157 | } |
| 158 | |
| 159 | Include< |
| 160 | Alias extends RelationshipRef<M, CN>, |
no outgoing calls
no test coverage detected