Source code for weaviate.collections.queries.fetch_objects_by_ids.query.sync

from typing import Generic

from weaviate.collections.classes.types import Properties, References
from weaviate.collections.queries.fetch_objects_by_ids.query.executor import (
    _FetchObjectsByIDsQueryExecutor,
)
from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionSync


[docs] @executor.wrap("sync") class _FetchObjectsByIDsQuery( Generic[Properties, References], _FetchObjectsByIDsQueryExecutor[ConnectionSync, Properties, References], ): pass