Skip to content

Commit

Permalink
fix: pass the database name argument properly
Browse files Browse the repository at this point in the history
  • Loading branch information
chulanovskyi-bs committed Oct 24, 2024
1 parent 7c83360 commit 9fc0f74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reverse_engineering/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ module.exports = {
logger.log('info', `Fetching the labels from ${databaseName}`, step);
results.push({
dbName: databaseName,
dbCollections: await neo4j.getLabels({ databaseName, isMultiDb, logger }),
dbCollections: await neo4j.getLabels({ database: databaseName, isMultiDb, logger }),
});
}

Expand Down

0 comments on commit 9fc0f74

Please sign in to comment.