Deprecated alias for Query. Use Query instead.
| 163 | |
| 164 | |
| 165 | class VectorQuery(Query): |
| 166 | """Deprecated alias for Query. Use Query instead.""" |
| 167 | |
| 168 | def __new__(cls, *args, **kwargs): # noqa : ARG004 |
| 169 | warnings.warn( |
| 170 | "VectorQuery is deprecated and will be removed in a future version. " |
| 171 | "Use Query instead.", |
| 172 | DeprecationWarning, |
| 173 | stacklevel=2, |
| 174 | ) |
| 175 | return super().__new__(cls) |
no outgoing calls