in graphql-dgs-example-shared/src/main/java/com/netflix/graphql/dgs/example/shared/types/ActionMovie.java [65:72]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ActionMovie that = (ActionMovie) o;
return java.util.Objects.equals(title, that.title) &&
java.util.Objects.equals(director, that.director) &&
nrOfExplosions == that.nrOfExplosions;
}