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.
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.
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"}'