我想检查 ArangoDB-PHP 是否已经存在一个集合。
$collectionHandler = new CollectionHandler($arango);
$userCollection = new Collection();
$userCollection->setName('_profiles');
因为我收到以下错误:
Server error: 1207:cannot create collection: duplicate name cannot create collection: duplicate name
如何使用 ArangoDB-PHP 检查集合是否已存在?