ersoykadir / Requirement-Traceability-Analysis

MIT License
2 stars 0 forks source link

TraceGraph: Creating Neo4j nodes #15

Closed ersoykadir closed 1 year ago

ersoykadir commented 1 year ago

Issue Description

We will store our software artifact data in neo4j. We need to convert our parsing methods such that artifact data from github will be parsed into neo4j nodes.

Step Details

Steps that will be performed:

Final Actions

The findings need to be documented in Wiki page.

Deadline of the Issue

24.04.2023 @23.59

ersoykadir commented 1 year ago

We have done a meeting with a friend, to jump start neo4j. Meeting notes can be found here.

ersoykadir commented 1 year ago

We are able to read issue data from json and create neo4j nodes. Can be seen here.

ersoykadir commented 1 year ago

match (c:Commit), (p:PullRequest) where c.associatedPullRequests = p.number merge (c)-[r:linked]-(p) return *

Query that links commits to their related pull requests.

codingAku commented 1 year ago

Artifact nodes and traces are all implemented for Neo4j. The issue completed.