Skip to content

Commit

Permalink
add util for appendRelationshipattribute
Browse files Browse the repository at this point in the history
  • Loading branch information
aarshi0301 committed Dec 28, 2023
1 parent 06a1467 commit 65cd62a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,12 @@ public Object getRelationshipAttribute(String name) {
return a != null ? a.get(name) : null;
}

public Object getAppendRelationshipAttribute(String name) {
Map<String, Object> a = this.appendRelationshipAttributes;

return a != null ? a.get(name) : null;
}

public boolean hasRelationshipAttribute(String name) {
Map<String, Object> r = this.relationshipAttributes;

Expand Down

0 comments on commit 65cd62a

Please sign in to comment.