Hi @southclaws !!
Welcome to our community!
Can you try:
1 - searching in graphql for that id.
query {
Get {
ContentOpenAI(where: {
path: ["id"]
operator: Equal
valueString: "9f27c258-05d1-5987-bc13-7c39436d3a8a"
}) {
datagraph_id
datagraph_type
name
}
}
}
2 - searching with python v4 client. This will search using the GRPC endpoint, so we can try isolating this on graphql.
This error you pointed should not be related to that query, because you are not doing any kind of vector search, but only filtering
Are you sure this error pop whenever the query is run?
Another thing to try is aggregating the objects using it as filter.
Let me know if you need help crafting those queries.
Thanks!