(userId: string, sessionId: string)
| 836 | }, |
| 837 | |
| 838 | getSessionForUser(userId: string, sessionId: string): Session | undefined { |
| 839 | const row = tenantStmts.getSessionForUser.get(sessionId, userId) as Record<string, unknown> | undefined; |
| 840 | return row ? rowToSession(row) : undefined; |
| 841 | }, |
| 842 | |
| 843 | getSessionWithAnnotationsForUser(userId: string, sessionId: string): SessionWithAnnotations | undefined { |
| 844 | const sessionRow = tenantStmts.getSessionForUser.get(sessionId, userId) as Record<string, unknown> | undefined; |
nothing calls this directly
no test coverage detected
searching dependent graphs…