How to filter by properties and nearText in v4?

Hi I am using the latest v4 weaviate client and wish to query a collection using nearText and filter by properties at the same time. How can I achieve this? Thanks

hi @DeltaBoukensha !!

Welcome to our community :hugs:

Check here how you can filter by properties:

For instance:

from weaviate.classes.query import Filter

jeopardy = client.collections.get("JeopardyQuestion")
response = jeopardy.query.fetch_objects(
    filters=Filter.by_property("round").equal("Double Jeopardy!"),
    limit=3
)

for o in response.objects:
    print(o.properties)

Let me know if this helps!

Thank!