Skip to content
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 @@ -66,8 +66,6 @@ case class PropertyGraphFrame(
* @return
* A GraphFrame containing the unified representation of the selected and filtered property
* groups
* @throws IllegalArgumentException
* if any specified property group name doesn't exist
*/
def toGraphFrame(
vertexPropertyGroups: Seq[String],
Expand Down Expand Up @@ -167,9 +165,6 @@ case class PropertyGraphFrame(
* @return
* A DataFrame representing the unified vertices data where each group has been appropriately
* filtered, joined, and processed based on its configuration.
* @throws IllegalArgumentException
* If any of the specified vertex group names do not exist in the PropertyGraphFrame
* configuration.
*/
def joinVertices(verticesData: DataFrame, vertexGroups: Seq[String]): DataFrame = {
require(vertexGroups.forall(this.vertexGroups.contains))
Expand Down