-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
trying to retrieve data to gephi #740
Comments
I tried the same but can't reproduce. Where exactly are your umlauts, can you show an example?
|
Hey Michael, i created a minimal example of the issue: Create statement:
Gephi Call:
error message:
so the n:movie with n.name='Mätrix' is not shown in gephi. |
I am running Neo4j 3.3.3 CE and Gephi 0.9.2 I am kind of confused why you can't reproduce it. |
Ya, I tried it too and it worked fine for me too. |
I am open for all possible solutions :) edit: tried it in a new project as well, not working.
|
Can you try this jar: https://www.dropbox.com/s/wyzn9ezd7rfsv8v/apoc-3.3.0.1-all.jar?dl=0 What locale are you running? |
neo4j Desktop Version: 1.0.14 and 1.0.15 tested trying this .jar: edit:
|
something new about this topic? :) edit:
It works. Still confused, because the new sourcecode of apoc should use utf-8 encoding |
Same problem |
If you can help me reproduce it, that would be super helpful. I couldn't reproduce it with the information from @rescuehero |
No idea how... try to import some nodes with UTF-8 characters like chinese, arabic, russian? |
mh, i already tried to give all necessary information. Are you using a Windows-distribution @jexp or are you trying it on a Linux-distribution? all info from me: @snow-frog Please provide your information as well, to help solving this issue. |
|
@snow-frog so you switched to this version? link |
Yes |
@rescuehero OSX |
I'm running on a German locale as well. |
Seems like a one-off error somewhere ... |
It seems to be releated to Gephi running on Windows, from my colleague @tomgeudens who took it upon himself to test it out (THANKS!!)
|
Mhh, I gonna give it a look this evening, maybe I will be able to find the needle :P |
Perhaps worthwhile to ask at the Gephi repo/forums? |
Hello, similar error occurred here. I'm using the APOC to stream data to gephi (0.92) on Windows 10. With the cql query: match p=(user: User)-[r1:buy]->(p1:Product)
CALL apoc.gephi.add(null,'workspace1',p,'weight') yield nodes
return * Produce error:
For your reference, I have some properties in Chinese characters for the nodes with label of User and Product. Could you help to address this? |
Can you share a cypher statement to recreate the problematic data? |
Hi @jexp create p=(l: User1 {id:1, order_types: '甲类,乙类', nickname: '哈哈😄'})-[r:Buy1 {created_at: '2019-02-24 09:30:21'}]->(m: Product1 {name: '此产品', id: 'ef4123ad'})
return p; Then stream the data with these statements: match p=(u1: User1)-[r1:Buy1]->(p1:Product1)
CALL apoc.gephi.add(null,'workspace1',p,'weight') yield nodes
return p Raise error:
|
I'm closing the issue because is obsolete and we are unable to replicate it. |
Hey folks,
i used this tutorial: https://tbgraph.wordpress.com/2017/04/01/neo4j-to-gephi/
to come along with neo4j, APOC and gephi.
Now i wanted to stream my database to gephi, but it is not working, error message below.
database has nodes named solution which can include one another with a given weight. In the labels there are Ä's sometimes, but I read it should be UTF-8 encoded.
CYPHER:
error:
I think this is not intended.
Kind regards
resc
The text was updated successfully, but these errors were encountered: