AWS Neptune Jupyter Notebook's Property Parameter Does Not Work

55 Views Asked by At

When displaying my vertices with specific properties,

my_node_labels = '{"User":"email","Group": "tag"}'
my_edge_labels = '{"Group":"relatedAs"}'

It shows the email property inn my graph display but it does not show the tag property.

1

There are 1 best solutions below

0
On

The parameter does not take any blank space. Eliminate all blank spaces in your parameter specifications.

 my_node_labels = '{"User":"email","Group":"tag"}'
 my_edge_labels = '{"Group":"relatedAs"}'