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