Can I modify Subgraph ? create node that separate from main graph, and merge node etc

Hi, I'm trying to do all my analytics queries in the subgraph/ graph projection. can I modify subgraph? (merge node, create node, collapse node and etc.)

  • more specifically, let's say I have <( p:Person { pid: 'p_1', age:'24', height:'1.8' ,gender: 'male'})> and relationships to other nodes.
    I want to create a characteristic node of this person by Merge (Character {pid:p.pid, age:p.age, height: p.height}). this will creates a node with only pid, age and height property and create a relationship to specific person node by sharing the same pic. However, I want to be able to do this on a subgraph so it will not affecting the main graph. -

I know I can create a subgraph of my interest based on my main graph.

I'm trying to create new node in the subgraph without affecting main graph and do much more modifications (for ex: run PageRank, merge node, collapse and act.) in the subgraph. Is there a way to do this?