What language are you using and what's your call? Lvc@
On 19 March 2014 08:16, prabhat <[email protected]> wrote: > > It seems passed variables types do not match type and count. I get this > error > > *method OrientBaseGraph.getEdges(String,Object) is not applicable* > * (actual and formal argument lists differ in length)* > * method OrientBaseGraph.getEdges(boolean) is not applicable* > * (actual and formal argument lists differ in length)* > * method OrientBaseGraph.getEdges() is not applicable* > * (actual and formal argument lists differ in length)* > > > > > On Wed, Mar 19, 2014 at 11:43 AM, Luca Garulli <[email protected]>wrote: > >> Hi, >> you can use >> >> public Iterable<Edge> OrientVertex.getEdges(final OrientVertex >> iDestination, final Direction iDirection, final String... iLabels) >> >> Lvc@ >> >> >> On 19 March 2014 07:09, Shishya <[email protected]> wrote: >> >>> I see that OgraphDatabase getEdgesBetweenVertexes has been deprecated. >>> is there some other method to get vertices using GraphFactory or rawGraph >>> >>> OrientGraphFactory factory = new OrientGraphFactory("remote: >>> localhost:2424/db","root","password").setupPool(1, 10); >>> factory.getTx().getRawGraph().declareIntent(new OIntentMassiveInsert()); >>> OrientGraph graph = factory.getTx(); >>> if( graph.getRawGraph().getEdgesBetweenVertexes(graph.getVertex("#12:0" >>> ),graph.getVertex("#12:1"),"assigned") == null) >>> graph.addEdge("class:assigned",graph.getVertex("#12:0"),graph.getVertex >>> ("#12:1"),"assigned");. >>> . >>> . >>> . >>> >>> >>> >>> -- >>> >>> --- >>> You received this message because you are subscribed to the Google >>> Groups "OrientDB" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected]. >>> >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- >> >> --- >> You received this message because you are subscribed to a topic in the >> Google Groups "OrientDB" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/orient-database/Q3OOMTOztSE/unsubscribe >> . >> To unsubscribe from this group and all its topics, send an email to >> [email protected]. >> >> For more options, visit https://groups.google.com/d/optout. >> > > -- > > --- > You received this message because you are subscribed to the Google Groups > "OrientDB" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
