We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2534f3f commit c8f81e3Copy full SHA for c8f81e3
cypher/GitLog/Import_git_log_csv_data.cypher
@@ -5,6 +5,7 @@ CALL { WITH row
5
MATCH (git_repository:Git:Repository{absoluteFileName: $git_repository_absolute_directory_name})
6
MERGE (git_author:Git:Log:Author {name: row.author, email: row.email})
7
MERGE (git_commit:Git:Log:Commit {
8
+ sha: row.hash,
9
hash: row.hash,
10
parent: coalesce(row.parent, ''),
11
message: row.message,
0 commit comments