Skip to main content

Cross-references

Use cross-references to establish directional relationships between collections.

Additional information

Notes:

  • Cross-references does not affect object vectors of the source or the target objects.
  • For multi-tenancy collection, you can establish a cross-reference from a multi-tenancy collection object to:
    • A non-multi-tenancy collection object, or
    • A multi-tenancy collection object belonging to the same tenant.

Define a cross-reference property

Include the reference property in the collection definition before adding cross-references to it.

    import weaviate.classes as wvc

client.collections.create(
name="JeopardyQuestion",
description="A Jeopardy! question",
properties=[
wvc.config.Property(name="question", data_type=wvc.config.DataType.TEXT),
wvc.config.Property(name="answer", data_type=wvc.config.DataType.TEXT),
],
references=[
wvc.config.ReferenceProperty(
name="hasCategory",
target_collection="JeopardyCategory"
)
]

)

Add a cross-reference property

It is also possible to add a cross-reference property to an existing collection definition.

    # Add the reference to JeopardyQuestion, after it was created
category = client.collections.get("JeopardyCategory")
# category.config.add_reference(
category.config.add_reference(
wvc.config.ReferenceProperty(
name="hasQuestion",
target_collection="JeopardyQuestion"
)
)

Create an object with a cross-reference

Specify a cross-reference when creating an object.

    import weaviate.classes as wvc

questions = client.collections.get("JeopardyQuestion")

questions.data.insert(
properties=properties, # A dictionary with the properties of the object
uuid=obj_uuid, # A UUID for the object
references={"hasCategory": category_uuid}, # e.g. {"hasCategory": "583876f3-e293-5b5b-9839-03f455f14575"}
)

Add a one-way cross-reference

Specify the required id and properties for the source and the target.

    import weaviate.classes as wvc

questions = client.collections.get("JeopardyQuestion")

questions.data.reference_add(
from_uuid=question_obj_id,
from_property="hasCategory",
to=category_obj_id
)

Add two-way cross-references

This requires adding reference properties in both directions, and adding two cross-references per object pair (from A -> to B and from B -> to A).

Create the JeopardyCategory collection:

    import weaviate.classes as wvc

category = client.collections.create(
name="JeopardyCategory",
description="A Jeopardy! category",
properties=[
wvc.config.Property(name="title", data_type=wvc.config.DataType.TEXT)
]
)

Create the JeopardyQuestion collection including the reference property to JeopardyCategory:

    client.collections.create(
name="JeopardyQuestion",
description="A Jeopardy! question",
properties=[
wvc.config.Property(name="question", data_type=wvc.config.DataType.TEXT),
wvc.config.Property(name="answer", data_type=wvc.config.DataType.TEXT),
],
references=[
wvc.config.ReferenceProperty(
name="hasCategory",
target_collection="JeopardyCategory"
)
]
)

Modify JeopardyCategory to add the reference to JeopardyQuestion:

    # Add the reference to JeopardyQuestion, after it was created
category = client.collections.get("JeopardyCategory")
# category.config.add_reference(
category.config.add_reference(
wvc.config.ReferenceProperty(
name="hasQuestion",
target_collection="JeopardyQuestion"
)
)

And add the cross-references:

    import weaviate.classes as wvc

# For the "San Francisco" JeopardyQuestion object, add a cross-reference to the "U.S. CITIES" JeopardyCategory object
questions = client.collections.get("JeopardyQuestion")
questions.data.reference_add(
from_uuid=question_obj_id,
from_property="hasCategory",
to=category_obj_id
)

# For the "U.S. CITIES" JeopardyCategory object, add a cross-reference to "San Francisco"
categories = client.collections.get("JeopardyCategory")
categories.data.reference_add(
from_uuid=category_obj_id,
from_property="hasQuestion",
to=question_obj_id
)

Add multiple (one-to-many) cross-references

Weaviate allows creation of multiple cross-references from one source object.

    import weaviate.classes as wvc

questions = client.collections.get("JeopardyQuestion")

refs_list = []
for temp_uuid in [category_obj_id, category_obj_id_alt]:
ref_obj = wvc.data.DataReference(
from_uuid=question_obj_id,
from_property="hasCategory",
to_uuid=temp_uuid
)
refs_list.append(ref_obj)
questions.data.reference_add_many(refs_list)

Delete a cross-reference

Deleting a cross-reference with the same parameters used to define the cross-reference.

    import weaviate.classes as wvc

# From the "San Francisco" JeopardyQuestion object, delete the "MUSEUMS" category cross-reference
questions = client.collections.get("JeopardyQuestion")
questions.data.reference_delete(
from_uuid=question_obj_id,
from_property="hasCategory",
to=category_obj_id
)
What happens if the target object is deleted?

What happens if the to object is deleted? If an object is deleted, cross-references to it will be left intact. A Get query using the inline fragment syntax will correctly retrieve only fields in the existing cross-references objects, but getting the object by ID will show all cross-references, whether the objects they point to exist or not.

Update a cross-reference

The targets of a cross-reference can be updated.

    import weaviate.classes as wvc

# In the "San Francisco" JeopardyQuestion object, set the "hasCategory" cross-reference only to "MUSEUMS"
questions = client.collections.get("JeopardyQuestion")
questions.data.reference_replace(
from_uuid=question_obj_id,
from_property="hasCategory",
to=category_obj_id
)