Hey, i am trying to use the near text query to search for related Discussions in my Database. I want to add specific search only for the name or for the content of the Discussion. Unfortunately, I haven’t been able to figure out an way to do this.
Can anyone help?
My current query:
near_text = {
"concepts": text.strip(),
"certainty": 0.65,
}
result = (
self.client.query
.get("Discussion", ["name", "vanilla_url"])
.with_near_text(near_text)
.with_limit(5)
.do()
)
Thanks