Skip to content

Commit c8f81e3

Browse files
committed
Add sha property equal to hash property for compatibility
1 parent 2534f3f commit c8f81e3

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cypher/GitLog/Import_git_log_csv_data.cypher

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ CALL { WITH row
55
MATCH (git_repository:Git:Repository{absoluteFileName: $git_repository_absolute_directory_name})
66
MERGE (git_author:Git:Log:Author {name: row.author, email: row.email})
77
MERGE (git_commit:Git:Log:Commit {
8+
sha: row.hash,
89
hash: row.hash,
910
parent: coalesce(row.parent, ''),
1011
message: row.message,

0 commit comments

Comments
 (0)