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

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


[docs] @executor.wrap("sync") class _OverAll(_OverAllExecutor[ConnectionSync]): pass