Having a large graph named myGraph. Trying to extract a subgraph containing only the most specific nodes. Here is how I create it.
CALL gds.beta.graph.create.subgraph(
'large-channels',
'myGraph',
'n.channel_count > 35',
'r.capacity >= 200000...
Nevermind, newbie problem. The field was in the database, but I forgot to add the property in the original gds.graph.create, which the gds.beta.graph.create.subgraph was based on.