How would I take the string "KNOWS" and use it as a Relationship type instead of using an enum RelTypes.KNOWS ... I need to dynamically add relationship instead of using only the 2 enums RelTypes.KNOWS and RelTypes.IS_FRIENDS_WITH

// START SNIPPET: createReltype
private static enum RelTypes implements RelationshipType
{
    KNOWS,
    IS_FRIENDS_WITH
}
// END SNIPPET: createReltype

public static void main( final String[] args )
{
    // START SNIPPET: startDb
    GraphDatabaseService graphDb = new EmbeddedGraphDatabase( DB_PATH );
    registerShutdownHook( graphDb );
    // END SNIPPET: startDb

    // START SNIPPET: operationsInATransaction
    Transaction tx = graphDb.beginTx();
    try
    {
        Node john = graphDb.createNode();
        john.setProperty("name", "John" );
        Node george = graphDb.createNode();
        george.setProperty("name", "George" );

        firstNode.createRelationshipTo( secondNode, RelTypes.KNOWS );

        tx.success();
    }
    finally
    {
        tx.finish();
    }
    // END SNIPPET: removingData

    System.out.println( "Shutting down database ..." );
    // START SNIPPET: shutdownServer
    graphDb.shutdown();
    // END SNIPPET: shutdownServer
}
link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Creating relationship types dynamically from a string is exactly what org.neo4j.graphdb.DynamicRelationshipType exists for: http://components.neo4j.org/neo4j/1.6.M02/apidocs/org/neo4j/graphdb/DynamicRelationshipType.html

link|improve this answer
perfect, thanks – RichardW Dec 22 '11 at 21:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.