Entity Relationships

flowchart BT
    account[Account]
    person[Person]
    activity[Activity]
    opportunity[Opportunity]
    idealBuyingGroup[Ideal Buying Group]
    personBuyingGroupMember[Person Buying Group Member]
    accountBuyingGroup[Account Buying Group]

    activity -->|associated with| person
    person -->|associated with| account
    opportunity -->|associated with| account
    accountBuyingGroup -->|associated with| idealBuyingGroup
    accountBuyingGroup -->|associated with| account
    personBuyingGroupMember -->|associated with| idealBuyingGroup
    personBuyingGroupMember -->|associated with| person

Did this page help you?