Source code for weaviate.collections.queries.near_object.query.async_
from typing import Generic
from weaviate.connect import executor
from weaviate.collections.classes.types import Properties, References
from weaviate.collections.queries.near_object.query.executor import _NearObjectQueryExecutor
from weaviate.connect.v4 import ConnectionAsync
[docs]
@executor.wrap("async")
class _NearObjectQueryAsync(
Generic[Properties, References],
_NearObjectQueryExecutor[ConnectionAsync, Properties, References],
):
pass