├── .gitignore ├── CHANGELOG.md ├── README.md ├── examples ├── apollo-upload-example │ ├── .eslintrc.js │ ├── .gitignore │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── App.js │ │ ├── fileList.js │ │ ├── index.js │ │ ├── registerServiceWorker.js │ │ └── uploadFile.js │ └── yarn.lock ├── basic-create-react-app-graphql │ ├── .gitignore │ ├── .npmrc │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── components │ │ │ ├── App.js │ │ │ ├── common │ │ │ │ ├── ApiVersion.js │ │ │ │ └── Settings.js │ │ │ └── projects │ │ │ │ ├── Project.js │ │ │ │ ├── Projects.js │ │ │ │ └── graphs │ │ │ │ ├── Graphs.js │ │ │ │ ├── LocalGraph.js │ │ │ │ └── RemoteGraph.js │ │ ├── index.css │ │ ├── index.js │ │ ├── reducers │ │ │ └── index.js │ │ ├── services │ │ │ ├── getWorkspaceQuery.js │ │ │ ├── neo4jDesktopService.js │ │ │ └── onWorkspaceChangeSub.js │ │ └── store │ │ │ └── index.js │ └── yarn.lock ├── basic-create-react-app │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── components │ │ │ ├── App.js │ │ │ ├── common │ │ │ │ ├── ApiVersion.js │ │ │ │ └── Settings.js │ │ │ └── projects │ │ │ │ ├── Project.js │ │ │ │ ├── Projects.js │ │ │ │ └── graphs │ │ │ │ ├── Graphs.js │ │ │ │ ├── LocalGraph.js │ │ │ │ └── RemoteGraph.js │ │ ├── index.css │ │ ├── index.js │ │ ├── reducers │ │ │ └── index.js │ │ ├── services │ │ │ └── neo4jDesktopService.js │ │ └── store │ │ │ └── index.js │ └── yarn.lock ├── basic-java-executor │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── index.html │ ├── manifest.json │ ├── package.json │ ├── test.jar │ └── yarn.lock ├── basic-single-file-kerberos │ ├── README.md │ └── index.html ├── basic-single-file │ ├── README.md │ └── index.html ├── cra-graph-app-components │ ├── .gitignore │ ├── README.md │ ├── img │ │ └── ss1.png │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ └── manifest.json │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── index.css │ │ ├── index.js │ │ └── registerServiceWorker.js │ └── yarn.lock ├── graphApps.json └── semantic-react-ga │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json │ ├── src │ ├── App.js │ ├── index.js │ └── registerServiceWorker.js │ └── yarn.lock └── images ├── developmentMode.png └── requestPermission.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/README.md -------------------------------------------------------------------------------- /examples/apollo-upload-example/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/.eslintrc.js -------------------------------------------------------------------------------- /examples/apollo-upload-example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/.gitignore -------------------------------------------------------------------------------- /examples/apollo-upload-example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/package.json -------------------------------------------------------------------------------- /examples/apollo-upload-example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/public/favicon.ico -------------------------------------------------------------------------------- /examples/apollo-upload-example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/public/index.html -------------------------------------------------------------------------------- /examples/apollo-upload-example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/public/manifest.json -------------------------------------------------------------------------------- /examples/apollo-upload-example/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/src/App.js -------------------------------------------------------------------------------- /examples/apollo-upload-example/src/fileList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/src/fileList.js -------------------------------------------------------------------------------- /examples/apollo-upload-example/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/src/index.js -------------------------------------------------------------------------------- /examples/apollo-upload-example/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/src/registerServiceWorker.js -------------------------------------------------------------------------------- /examples/apollo-upload-example/src/uploadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/src/uploadFile.js -------------------------------------------------------------------------------- /examples/apollo-upload-example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/apollo-upload-example/yarn.lock -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/.gitignore -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/.npmrc -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/README.md -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/package.json -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/public/favicon.ico -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/public/index.html -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/public/manifest.json -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/App.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/common/ApiVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/common/ApiVersion.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/common/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/common/Settings.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/projects/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/projects/Project.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/projects/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/projects/Projects.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/projects/graphs/Graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/projects/graphs/Graphs.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/projects/graphs/LocalGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/projects/graphs/LocalGraph.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/components/projects/graphs/RemoteGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/components/projects/graphs/RemoteGraph.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/index.css: -------------------------------------------------------------------------------- 1 | #root { 2 | margin: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/index.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/reducers/index.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/services/getWorkspaceQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/services/getWorkspaceQuery.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/services/neo4jDesktopService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/services/neo4jDesktopService.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/services/onWorkspaceChangeSub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/services/onWorkspaceChangeSub.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/src/store/index.js -------------------------------------------------------------------------------- /examples/basic-create-react-app-graphql/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app-graphql/yarn.lock -------------------------------------------------------------------------------- /examples/basic-create-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/.gitignore -------------------------------------------------------------------------------- /examples/basic-create-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/README.md -------------------------------------------------------------------------------- /examples/basic-create-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/package.json -------------------------------------------------------------------------------- /examples/basic-create-react-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/public/favicon.ico -------------------------------------------------------------------------------- /examples/basic-create-react-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/public/index.html -------------------------------------------------------------------------------- /examples/basic-create-react-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/public/manifest.json -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/App.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/common/ApiVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/common/ApiVersion.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/common/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/common/Settings.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/projects/Project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/projects/Project.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/projects/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/projects/Projects.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/projects/graphs/Graphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/projects/graphs/Graphs.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/projects/graphs/LocalGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/projects/graphs/LocalGraph.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/components/projects/graphs/RemoteGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/components/projects/graphs/RemoteGraph.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/index.css: -------------------------------------------------------------------------------- 1 | #root { 2 | margin: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/index.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/reducers/index.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/services/neo4jDesktopService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/services/neo4jDesktopService.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/src/store/index.js -------------------------------------------------------------------------------- /examples/basic-create-react-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-create-react-app/yarn.lock -------------------------------------------------------------------------------- /examples/basic-java-executor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-java-executor/.gitignore -------------------------------------------------------------------------------- /examples/basic-java-executor/.npmignore: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /examples/basic-java-executor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-java-executor/README.md -------------------------------------------------------------------------------- /examples/basic-java-executor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-java-executor/index.html -------------------------------------------------------------------------------- /examples/basic-java-executor/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-java-executor/manifest.json -------------------------------------------------------------------------------- /examples/basic-java-executor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-java-executor/package.json -------------------------------------------------------------------------------- /examples/basic-java-executor/test.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-java-executor/test.jar -------------------------------------------------------------------------------- /examples/basic-java-executor/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-java-executor/yarn.lock -------------------------------------------------------------------------------- /examples/basic-single-file-kerberos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-single-file-kerberos/README.md -------------------------------------------------------------------------------- /examples/basic-single-file-kerberos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-single-file-kerberos/index.html -------------------------------------------------------------------------------- /examples/basic-single-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-single-file/README.md -------------------------------------------------------------------------------- /examples/basic-single-file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/basic-single-file/index.html -------------------------------------------------------------------------------- /examples/cra-graph-app-components/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/.gitignore -------------------------------------------------------------------------------- /examples/cra-graph-app-components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/README.md -------------------------------------------------------------------------------- /examples/cra-graph-app-components/img/ss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/img/ss1.png -------------------------------------------------------------------------------- /examples/cra-graph-app-components/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/package.json -------------------------------------------------------------------------------- /examples/cra-graph-app-components/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/public/favicon.ico -------------------------------------------------------------------------------- /examples/cra-graph-app-components/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/public/index.html -------------------------------------------------------------------------------- /examples/cra-graph-app-components/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/public/manifest.json -------------------------------------------------------------------------------- /examples/cra-graph-app-components/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/src/App.css -------------------------------------------------------------------------------- /examples/cra-graph-app-components/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/src/App.js -------------------------------------------------------------------------------- /examples/cra-graph-app-components/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/src/index.css -------------------------------------------------------------------------------- /examples/cra-graph-app-components/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/src/index.js -------------------------------------------------------------------------------- /examples/cra-graph-app-components/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/src/registerServiceWorker.js -------------------------------------------------------------------------------- /examples/cra-graph-app-components/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/cra-graph-app-components/yarn.lock -------------------------------------------------------------------------------- /examples/graphApps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/graphApps.json -------------------------------------------------------------------------------- /examples/semantic-react-ga/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/.gitignore -------------------------------------------------------------------------------- /examples/semantic-react-ga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/README.md -------------------------------------------------------------------------------- /examples/semantic-react-ga/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/package.json -------------------------------------------------------------------------------- /examples/semantic-react-ga/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/public/favicon.ico -------------------------------------------------------------------------------- /examples/semantic-react-ga/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/public/index.html -------------------------------------------------------------------------------- /examples/semantic-react-ga/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/public/manifest.json -------------------------------------------------------------------------------- /examples/semantic-react-ga/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/src/App.js -------------------------------------------------------------------------------- /examples/semantic-react-ga/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/src/index.js -------------------------------------------------------------------------------- /examples/semantic-react-ga/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/src/registerServiceWorker.js -------------------------------------------------------------------------------- /examples/semantic-react-ga/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/examples/semantic-react-ga/yarn.lock -------------------------------------------------------------------------------- /images/developmentMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/images/developmentMode.png -------------------------------------------------------------------------------- /images/requestPermission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neo4j-devtools/graph-app-starter/HEAD/images/requestPermission.png --------------------------------------------------------------------------------