Lesson 6: Relationships
These code samples provide a basic introduction on creating relationships between entities. For an in-depth description of Avial modeling and relationships, please visit our wiki <https://docs.ledr.io/en/the-orchestra-platfrom/avial-model#relationships>
Set Relationships between Person & Company Entities
- module.utils.set_relationships.set_relationships(person_entity: AvEntity, company_entity: AvEntity, auth: AvAuthorization)[source]
The lesson on setting person facts (see
module.utils.set_person_facts()
) demonstrated adding a company string to the person entity to denote the company the person is an employee of. However, this is quite limiting because there is no context provided by the company string. Where is the company located, what’s the average salary of the company, what’s the ratio of job categories of the company? The power of Orchestra is in modeling real world entities that can be joined together as a relationship. This code snippet shows how to relate the person entity with the company entity to show how to join 2 entities together to startt to form a knowledge graph.- Parameters:
person_entity – The entity ID of the person entity to add the company relationship.
company_entity – The entity ID of the company entity to relate to the person entity.
auth – The Orchestra server authorization that allows entity operations.