[error] both method addVertex in class OrientBaseGraph of type (x$1: Any, x$2: <repeated...>[Object])com.tinkerpop.blueprints.impls.orient.OrientVertex
[error] and method addVertex in class OrientBaseGraph of type (x$1: Any)com.tinkerpop.blueprints.impls.orient.OrientVertex
[error] match argument types (String)
[error] val npNode = g.addVertex(f"class:$NPPhrase")
[error]
How do I get Scala to pick the method I am trying to call (the more specific one) ?
Oh and while in this context g.addVertext(...,Nil)
is semantically equivalent, I still want to know how to solve the problem above.