I have stored some data in weaviate in terms of two properties, (project and content). when i query db then is there any provision of setting preference that first all matches related to project will come and then related to content
question = “communication error”
project = “xyz”
response = (
client.query
.get(“test”, [“project”, “content”])
.with_additional([“certainty”, “score”])
.with_near_text({“concepts”: [project, question]})
.with_limit(15)
.do()
)
so i need all information for xyz project first in output because there are some other projects available in database.so can we set any priority so that first project related search matches and then question related search matches?