Hi Hesham, > Thanks Jim, another beginner questions then, how do I get these long-lived > names after I create an index?
If you look at this section of the manual: http://docs.neo4j.org/chunked/snapshot/rest-api-indexes.html#rest-api-add-node-to-index You'll see that you after you've created an index, you can add to it. And in the HTTP 201 response when you've added a node (or relationship) to the index, there's a location header that gives you your long-lived URI for the index entry. Dereferencing that URI with a HTTP get will give you a useful response representation including a JSON map with a key called "self" which will point to the node (in your case an article) that you want. HTH, Jim _______________________________________________ Neo4j mailing list [email protected] https://lists.neo4j.org/mailman/listinfo/user

