Fix ArangoDB calls

This commit is contained in:
Maksim Tereshin 2024-11-23 10:17:04 +01:00
parent 2a659eaf96
commit 771157abb1
No known key found for this signature in database

View file

@ -280,6 +280,11 @@ public class RequestService {
}
Object entityIds = entities.get(entityType);
if (entityIds instanceof String) {
entityIds = Collections.singletonList((String) entityIds);
}
executeMainAqlRequest(arangoDb, entityIds, collection.getCollectionUrl(), type, transactionId);
});