Hi All,

  I have loaded some data to a neo4j graph with the batchinsert and
indexservice. I can query the index using the shell, but when I try to
access the same index in python using the neo4j.py library it seems
like it can't find it. Is there any special trick or configuration
that I should be using?

 Thanks,

here is the load code (jave) and the read code (python)

Java
            ...
            long node = inserter.createNode( nodeProps );
            indexService.index( node, "uri", nodeuri );
            indexService.index(node, "label", label);
            ...

Python

               graphdb = neo4j.GraphDatabase("/var/neo4j/yago")
              gdi = graphdb.index('label')


--
Vasco Calais Pedro
Founder/CEO
Bueda
412.880.7785



-- 
Vasco Calais Pedro
Founder/CEO
Bueda
412.880.7785
_______________________________________________
Neo4j mailing list
[email protected]
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to