0

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.

Kelvin Lawrence
  • 14,674
  • 2
  • 16
  • 38
Manabu Tokunaga
  • 956
  • 10
  • 19

1 Answers1

0

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"}'
Manabu Tokunaga
  • 956
  • 10
  • 19