This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"> | |
<viz:size value="0"/> | |
<viz:position x="63.29695754804172" y="51.93657398917823"/> | |
</node> | |
<node id="1"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"/> | |
<node id="1"/> | |
<node id="2"/> | |
<node id="3"/> | |
<node id="4"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"/> | |
<node id="1"/> | |
<node id="2"/> | |
<node id="3"/> | |
<node id="4"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="0"/> | |
<node id="1"/> | |
<node id="2"/> | |
<node id="3"/> | |
<node id="4"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta/> | |
<graph defaultedgetype="directed"> | |
<nodes> | |
<node id="cytoscape"/> | |
<node id="microsoft excel"/> | |
<node id="gephi"/> | |
<node id="microsoft power bi"/> | |
<node id="qlik"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { GraphQLResolveInfo, FieldNode, SelectionNode, SelectionSetNode, print } from "graphql"; | |
import { ResolverContext } from "./index"; | |
/** | |
* | |
* Translates a graphql query into a neo4j/graphql query using neo4j/graphql-ogm | |
* @see https://github.com/neo4j/graphql/issues/227 | |
* | |
* @param args graphql query args | |
* @param info GraphQLResolveInfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <string.h> | |
#include <stdlib.h> | |
#include <curl/curl.h> | |
#include <cjson/cJSON.h> | |
struct MemoryStruct { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+-------------------------------+----------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ | |
| Name | Type | Query | | |
+-------------------------------+----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
### SCRIPT VARIABLES : change them !!! | |
############################################################################### | |
$NEO4J_PATH="c:\neo4j-enterprise-3.3.4" | |
$NEO4J_LOGIN="neo4j" | |
$NEO4J_PASSWORD="letmein" | |
$CYPHER_PATH="c:\cypher" | |
$CSV_PATH="c:\data" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"settings": { | |
"neo4j": { | |
"login": "neo4j", | |
"password": "admin", | |
"url": "bolt://localhost" | |
}, | |
"style": { | |
"labels": { | |
"City": { |