diff --git a/src/types/graphTypes.ts b/src/types/graphTypes.ts index 8bd46ac8..7e1d7b79 100644 --- a/src/types/graphTypes.ts +++ b/src/types/graphTypes.ts @@ -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]