OrientGraph graph = new OrientGraph("memory:test");
        
        Data data = new Data();
        data.addData("a","b","c");

        Vertex first = graph.addVertex(null);
        first.setProperty("name","anything");
        first.setProperty("DATA", data);
        
        Vertex second = graph.addVertex(null);
        second.setProperty( "name", "Marko" );
        
        
        Edge lucaKnowsMarko = graph.addEdge(null, first, second, 
"relation");

On Friday, 5 June 2015 19:46:14 UTC+5:30, [email protected] wrote:
>
> Hi,
>>
> can you post your code ?
>
> Regards,
> Alessandro 
>

-- 

--- 
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.

Reply via email to