in asterix-graphix/src/main/java/org/apache/asterix/graphix/lang/clause/FromGraphClause.java [174:186]
public boolean equals(Object object) {
if (this == object) {
return true;
}
if (!(object instanceof FromGraphClause)) {
return false;
}
FromGraphClause that = (FromGraphClause) object;
return Objects.equals(graphConstructor, that.graphConstructor) && Objects.equals(dataverse, that.dataverse)
&& Objects.equals(name, that.name) && matchClauses.equals(that.matchClauses)
&& Objects.equals(correlateClauses, that.correlateClauses)
&& Objects.equals(lowerClause, that.lowerClause);
}