@wppconnect/wa-js - v3.23.1
    Preparing search index...

    Function getMessagesFromRowId

    • 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.

      Parameters

      Returns Promise<any[]>

      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
      });