nodeinfo = removeNodeLabel(neo4jconn,node,labels)
returns updated node information as a Neo4jNode object for one node, or as a table for multiple nodes.
Remove the labels Analyst and Scientist from the updated nodes and display updated node information. Each node now has only the label Person. The nodeinfo output argument is a Neo4jNode object.
Neo4j database connection, specified as a Neo4jConnect object created with the function neo4j.
Node in a Neo4j database, specified as a Neo4jNode object, Neo4jNode object array, numeric scalar,
or a numeric vector. For one node, specify a Neo4jNode object or a
numeric scalar. For multiple nodes, specify a Neo4jNode object array or
a numeric vector.
The numeric scalar or vector must contain Neo4j database node identifiers.
Example: 15
Example: [2,3,4]
Node labels, specified as a character vector, cell array of character vectors, string scalar,
or string array. To specify one node label, use a character vector or string scalar. For
multiple node labels, use a cell array of character vectors or a string array.