Source code for weaviate.collections.queries.fetch_object_by_id.sync
from typing import (
Generic,
)
from weaviate.collections.classes.types import Properties, References
from weaviate.collections.queries.fetch_object_by_id.executor import (
_FetchObjectByIDQueryExecutor,
)
from weaviate.connect import executor
from weaviate.connect.v4 import ConnectionSync
[docs]
@executor.wrap("sync")
class _FetchObjectByIDQuery(
Generic[Properties, References],
_FetchObjectByIDQueryExecutor[ConnectionSync, Properties, References],
):
pass