Hey guys
I'm trying to add edges between a list of pairs of nodes (with a property on the edge), without having to loop through and do each one individually. The nodes all already exist in the graph so no need to add the nodes
I'm using gremlin-python on an AWS neptune instance.
Currently I've got a list of dictionaries containing the information in the format:
{'v1':uuid,'v2':uuid,'score':int}
Is there a way to do this in one query?
Thanks
Max