refactoring some op functions, chain populating, type corrections

This commit is contained in:
2025-03-14 15:05:00 -07:00
parent 17e0480f83
commit e39d0381c9
6 changed files with 312 additions and 234 deletions

View File

@@ -13,16 +13,3 @@ export type User = {
username: string;
id: string;
};
export interface PlaylistModel_Pl {
playlistID: string;
playlistName: string;
}
export interface PlaylistModel extends PlaylistModel_Pl {
userID: string;
}
export interface LinkModel_Edge {
from: string;
to: string;
}