Quantcast
Channel: Weaviate Community Forum - Latest posts
Viewing all articles
Browse latest Browse all 3601

An object is somehow only visible in the REST API but not via GraphQL

$
0
0

Hi @southclaws !!

Welcome to our community! :hugs:

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 :thinking:

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!


Viewing all articles
Browse latest Browse all 3601

Trending Articles