Elements in my Weaviate schema include a vector of integer tags as one of their properties. I’d like to be able to filter my search to only those elements that include some particular tag, but it looks like Weaviate doesn’t support the “In” GraphQL operator. Are there plans to support that? Or any suggested work-arounds?
where objId is presumably a single value and the goal is to return elements where it is one of ‘x’, ‘y’, or ‘z’. I understand from the discussion that input coercion would also allow the reverse, which is what I’m looking for – for example, tag_ids with dataType=int and:
{path: [“tag_ids”], operator: Contains, int: 12}
to return only elements that include 12 in that array property (for example, an element with tag_ids=[10, 12, 14])?