Source code for weaviate.collections.aggregations.over_all.async_

from weaviate.collections.aggregations.over_all.executor import _OverAllExecutor
from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionAsync


[docs] @executor.wrap("async") class _OverAllAsync(_OverAllExecutor[ConnectionAsync]): pass