Skip to content

Add a property to an in-memory graph #53

Open
@davidmakovoz

Description

@davidmakovoz

I have an in-memory graph created using the gds.graph.create() procedure.
I want to add a property to some of the nodes in the graph.
Simply setting the properties of those nodes after creating the graph doesn't work.
I would need to delete the graph and create it again to include the newly added properties.
I see that it is possible to add properties to an existing graph using the mutate flavor of different algorithms.
It is possible to remove a property from an in-memory graph using the gds.graph.removeNodeProperties() procedure.
Wouldn't it be helpful to have a gds.graph.addNodeProperties() procedure?
Here is one example of where it would be useful. I run community detection. I create a graph using the existing nodes and their properties. I run mutate several times adding different communityIds, e.g. for louvain, wcc, scc. Then I decided to run labelPropagation and add a new property to my nodes to use as the seedProperty. However, this new property is not in the graph and cannot be used as the seedProperty. So I can either run using an anonymous graph or create a new graph, but the new graph will not have those communityIds created previously. It's definitely not a show-stopper, but it would useful to have.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions