Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,24 @@

public class ItemEdge extends Edge {

private String document;
private String shard;

private String property;

public ItemEdge(String id, String label, String outV, String inV, String documentId, String property) {
public ItemEdge(String id, String label, String outV, String inV, String shardId, String property) {
super(id, label, outV, inV);
this.document = documentId;
this.shard = shardId;
this.property = property;
}

public ItemEdge(String id, String label, String outV, List<String> inVs, String documentId, String property) {
public ItemEdge(String id, String label, String outV, List<String> inVs, String shardId, String property) {
super(id, label, outV, inVs);
this.document = documentId;
this.shard = shardId;
this.property = property;
}

public String getDocument() {
return document;
public String getShard() {
return shard;
}

public String getProperty() {
Expand Down