java - How to check for an existing node with with a certain property in Neo4j through Ajax? -


this dumbest question ever. have been trying long long time cannot seem figure out how check existing node property using ajax , rest in neo4j. know cypher query not ajax . need check existing email id passed jsp page.

i writing ::

 $.ajax({   type:"post",   url: "http://localhost:7474/db/data/cypher",   accepts: "application/json",   datatype:"json",   data:{          "query" : "match n n.email = {email} return count(n)",          "params" : {"email" $('#email'}        }, 

i cannot figure out how complete function , dont know if right way ?

please eating lot of time.

thanks.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -