**feat(types): add new relationship types to VerbType**

### Changes:
- Introduced two new relationship types in `VerbType`:
  - `Follows`: Indicates a following relationship.
  - `Likes`: Indicates a liking relationship.

### Purpose:
Enhanced the `VerbType` to support additional relationship semantics, expanding its applicability for modeling complex graph structures and fostering richer data representation.
This commit is contained in:
David Snelling 2025-06-20 13:48:56 -07:00
parent c13e124c71
commit 75f81bc707

View file

@ -143,6 +143,8 @@ export const VerbType = {
FriendOf: 'friendOf', // Indicates friendship
ReportsTo: 'reportsTo', // Indicates reporting relationship
Supervises: 'supervises', // Indicates supervisory relationship
Mentors: 'mentors' // Indicates mentorship relationship
Mentors: 'mentors', // Indicates mentorship relationship
Follows: 'follows', // Indicates the following relationship
Likes: 'likes' // Indicates liking relationship
} as const
export type VerbType = (typeof VerbType)[keyof typeof VerbType]