getNoteListItems() — ui Function Reference
Architecture documentation for the getNoteListItems() function in note.server.ts from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 1e9599cb_6aa9_0273_2b37_2e5479328208["getNoteListItems()"] 62fec141_1f2c_3dbb_0c78_55df1f858117["note.server.ts"] 1e9599cb_6aa9_0273_2b37_2e5479328208 -->|defined in| 62fec141_1f2c_3dbb_0c78_55df1f858117 style 1e9599cb_6aa9_0273_2b37_2e5479328208 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/shadcn/test/fixtures/frameworks/remix-indie-stack/app/models/note.server.ts lines 17–23
export function getNoteListItems({ userId }: { userId: User["id"] }) {
return prisma.note.findMany({
where: { userId },
select: { id: true, title: true },
orderBy: { updatedAt: "desc" },
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does getNoteListItems() do?
getNoteListItems() is a function in the ui codebase, defined in packages/shadcn/test/fixtures/frameworks/remix-indie-stack/app/models/note.server.ts.
Where is getNoteListItems() defined?
getNoteListItems() is defined in packages/shadcn/test/fixtures/frameworks/remix-indie-stack/app/models/note.server.ts at line 17.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free