Closed macbookandrew closed 2 years ago
This adds a new meili:index:list command to print information about all the available indexes (indices):
meili:index:list
$ php artisan meili:index:list +----------+-------------------------------------------------+ | Setting | Value | +----------+-------------------------------------------------+ | Branches | array ( | | | 'uid' => 'branches', | | | 'primaryKey' => 'id', | | | 'createdAt' => '2022-09-15T18:51:25.724448Z', | | | 'updatedAt' => '2022-09-15T18:51:25.852447Z', | | | 'numberOfDocuments' => 1, | | | 'isIndexing' => false, | | | ) | | Products | array ( | | | 'uid' => 'products', | | | 'primaryKey' => NULL, | | | 'createdAt' => '2022-08-31T16:39:52.075667Z', | | | 'updatedAt' => '2022-08-31T17:23:53.909127Z', | | | 'numberOfDocuments' => 0, | | | 'isIndexing' => false, | | | ) | +----------+-------------------------------------------------+
@macbookandrew Sorry for the delay, but I've been on vacation and noticed your PRs yesterday - I'm having a look at them :)
This adds a new
meili:index:list
command to print information about all the available indexes (indices):