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