Deprecated alias for Query. Use Query instead.
| 131 | |
| 132 | |
| 133 | class VectorQuery(Query): |
| 134 | """Deprecated alias for Query. Use Query instead.""" |
| 135 | |
| 136 | def __new__(cls, *args, **kwargs): # noqa : ARG004 |
| 137 | warnings.warn( |
| 138 | "VectorQuery is deprecated and will be removed in a future version. " |
| 139 | "Use Query instead.", |
| 140 | DeprecationWarning, |
| 141 | stacklevel=2, |
| 142 | ) |
| 143 | return super().__new__(cls) |
no outgoing calls