-
Notifications
You must be signed in to change notification settings - Fork 2
Listing all the collections
Thomas Cocchiara edited this page Jan 10, 2018
·
1 revision
With the adapter instantiated just run
$collections = $adapter->listCollections();
To see the name of the available collections you could run the following:
$collections = $adapter->listCollections();
foreach ($collections as $key => $collection)
{
echo "Collection number $key name: $collection->name <br>";
}