Git Product home page Git Product logo

Comments (15)

laaron2008 avatar laaron2008 commented on May 12, 2024 5

curl -o ./neo4jd3-master/docs/json/neo4jData.json http://localhost:7474/db/data/transaction/commit "
"-u neo4j:123456 -H 'Content-Type: application/json' -d "
"'{"statements":[{ "statement":"MATCH path = (n)-[r]->(m) RETURN path", "
""resultDataContents":["graph"]}]}'" @MelvinZang

from neo4jd3.

laaron2008 avatar laaron2008 commented on May 12, 2024 2

从neo4j-community能导出neo4j-master格式文件@MelvinZang

from neo4jd3.

souravprakashjena avatar souravprakashjena commented on May 12, 2024 1

with ajax call its possible

from neo4jd3.

souravprakashjena avatar souravprakashjena commented on May 12, 2024 1

ya i will post it tomorrow

from neo4jd3.

laaron2008 avatar laaron2008 commented on May 12, 2024

@HongJianMou Do you get the Neo4j data?

from neo4jd3.

ander-oliveira avatar ander-oliveira commented on May 12, 2024

@souravprakashjena how it's possible? Do you have and example, please?

from neo4jd3.

ander-oliveira avatar ander-oliveira commented on May 12, 2024

Okay @souravprakashjena =)

from neo4jd3.

MelvinZang avatar MelvinZang commented on May 12, 2024

Did you fix it? I don‘t know how to get Neo4j data format either. @ander-oliveira @souravprakashjena @HongJianMou @laaron2008

from neo4jd3.

MelvinZang avatar MelvinZang commented on May 12, 2024

@laaron2008 可以的,这句中文让我猝不及防

from neo4jd3.

MelvinZang avatar MelvinZang commented on May 12, 2024

@laaron2008 不过老哥,我没找到你说的,能再具体点嘛

from neo4jd3.

laaron2008 avatar laaron2008 commented on May 12, 2024

等晚上我给你发吧 @MelvinZang

from neo4jd3.

MelvinZang avatar MelvinZang commented on May 12, 2024

@laaron2008 嗯嗯多谢了

from neo4jd3.

MelvinZang avatar MelvinZang commented on May 12, 2024

@laaron2008 thanks, I got it.

from neo4jd3.

Aquamarino avatar Aquamarino commented on May 12, 2024

@laaron2008 太有用了,感谢

from neo4jd3.

souravprakashjena avatar souravprakashjena commented on May 12, 2024
            function newQuery(query) {
                return (neopost({
                    statements: [{
                        statement: query,
                        resultDataContents: ["graph"]
                    }]
                }));
            }
            


            function neopost(b) {
                var CYPHER_URL = "http://localhost:7474/db/data/transaction/commit";
                var AUTHORIZATION = "Auth_Key";
                b = JSON.stringify(b);
                 return $.ajax({
                    type: "POST",
                    async: false,
                    beforeSend: function (b) {
                        AUTHORIZATION && b.setRequestHeader("Authorization", AUTHORIZATION)
                    },
                    url: CYPHER_URL,
                    contentType: "application/json",
                    data: b
                })
            };

from neo4jd3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.