Promise that resolves to an array of message objects from IndexedDB
// Get 1000 messages after rowId 999960610
const messages = await WPP.indexdb.getMessagesFromRowId({ minRowId: 999960610 });
// Get 500 messages after rowId 999960610
const messages = await WPP.indexdb.getMessagesFromRowId({
minRowId: 999960610,
limit: 500
});
// Get all available messages after rowId (use with caution)
const messages = await WPP.indexdb.getMessagesFromRowId({
minRowId: 999960610,
limit: -1
});
Get messages from IndexedDB 'model-storage' database starting from a specific rowId
This function queries the IndexedDB database directly using the rowId index, retrieving messages with rowId greater than the specified value. It's useful for pagination or fetching messages in chronological order.