17 lines
490 B
TypeScript
17 lines
490 B
TypeScript
|
import database from '..';
|
||
|
import { TAppDatabase } from '../interfaces';
|
||
|
import { THREAD_MESSAGES_TABLE } from '../model/ThreadMessage';
|
||
|
|
||
|
const getCollection = (db: TAppDatabase) => db.get(THREAD_MESSAGES_TABLE);
|
||
|
|
||
|
export const getThreadMessageById = async (messageId: string) => {
|
||
|
const db = database.active;
|
||
|
const threadMessageCollection = getCollection(db);
|
||
|
try {
|
||
|
const result = await threadMessageCollection.find(messageId);
|
||
|
return result;
|
||
|
} catch (error) {
|
||
|
return null;
|
||
|
}
|
||
|
};
|