Tag: weaviate

  • Getting uuids of references with Get filtering

    Getting uuids of references with Get filtering

    0 I understand one can get the uuid of an object using .with_additional([id]). Let say now, I request references as well for example: where_filter = { "path": ["name"], "operator": "Equal", "valueText": "whatever" } (client.query.get("Node", [‘name’, ‘hasChildren{… on Node{name}}’]) .with_where(where_filter) .with_additional([‘id’]) .do()) the .with_additional applies only to the parent node and you would not get uuids…