[Neo4j] Re: Is there any Graph Visualisation Tool with the Name "GraphDB".If there how can i use that Tool with Neo4j.

2019-01-06 Thread Tom Zeppenfeldt
I don't know of any tool of that name. Depending on your needs, I suggest to have a look at www.graphileon.com (of which I am one of the members) . We have a free personal edition for Mac, Windows, Linux. Best, Tom On Monday, 6 August 2018 15:08:28 UTC+2, Srinivas Bonigiri wrote: > > Is

Re: [Neo4j] neo4j browser display nodes as images

2016-12-26 Thread Tom Zeppenfeldt
Koen, are you referring to this tweet of by Rik ? https://twitter.com/rvanbruggen/status/804407817952174084 > > On 26 Dec 2016, at 15:50, koen wrote: > > Hi, i a recent post of Rik i saw that starting with neo4j 3.1 you can display > a picture / icon representing a

Re: [Neo4j] Diff two graphs

2016-05-07 Thread Tom Zeppenfeldt
You might try this ( http://portal.graphgist.org/graph_gists/5e3d1fdf-d14d-4e0f-80a9-bbf344ea3e07 ) approach. It also allows you to keep track of changes and view previous versions Best, Tom > On 02 May 2016,

Re: [Neo4j] WITH only applies to first element of UNION ?

2015-06-04 Thread Tom Zeppenfeldt
with is only applied to the first part and you would have to replicate that with. Or you just send two statements. HTH Michael Am 01.06.2015 um 03:52 schrieb Tom Zeppenfeldt tomzeppenfe...@gmail.com: *For a faceted search I first do a MATCH on multiple conditions, and then count

Re: [Neo4j] WITH only applies to first element of UNION ?

2015-06-04 Thread Tom Zeppenfeldt
no one has a clue? Met vriendelijke groet / With kind regards Tom Zeppenfeldt --- Ir. T. Zeppenfeldt van der Waalsstraat 30 6706 JR Wageningen The Netherlands Mobile: +31 6 23 28 78 06 E-mail: tomzeppenfe...@gmail.com Twitter

[Neo4j] WITH only applies to first element of UNION ?

2015-06-01 Thread Tom Zeppenfeldt
*For a faceted search I first do a MATCH on multiple conditions, and then count the remaining facet values. * match (n:Document)-[:PUBLISHED_ON]-(d:Day)-[:HAS_DAY]-(m:Month)-[:HAS_MONTH]-(y:Year {year:2013}), (n)-[:MENTIONED_IN|HAS_CHILD*1..]-(l:Location {name:'Netherlands'} )

Re: [Neo4j] Re: Nested collections problem

2015-05-14 Thread Tom Zeppenfeldt
the unique combinations of labelsn, labelm and typer, which is exactly your scope. And that's true that lablesn is not a collection, so what is the problem? or what is not working? Thanks, Sumit On Wednesday, 13 May 2015 03:47:12 UTC+5:30, Tom Zeppenfeldt wrote: In order to make a meta

Re: [Neo4j] INSERTing properties

2015-05-14 Thread Tom Zeppenfeldt
Tom Zeppenfeldt tomzeppenfe...@gmail.com: We have a usecase in which styling of a node depends on the user and the (properties of a) relationship it has with other nodes. While trying to figure out how to do such a thing, we realized that it would be nice to have a possibility to insert

[Neo4j] INSERTing properties

2015-05-13 Thread Tom Zeppenfeldt
We have a usecase in which styling of a node depends on the user and the (properties of a) relationship it has with other nodes. While trying to figure out how to do such a thing, we realized that it would be nice to have a possibility to insert properties in nodes or rels . Not SETting them

[Neo4j] Nested collections problem

2015-05-12 Thread Tom Zeppenfeldt
In order to make a meta-model, i'd like to know what kind of nodes , rels are present in a db, as well as counts. Doing this *MATCH (n)-[r]-(m)* *WITH DISTINCT [labels(n),labels(m),type(r)] AS nrms, count(*) AS countr* *WITH nrms[0] AS labelsn, nrms[1] AS labelsm, nrms[2] AS typer, countr*

[Neo4j] comparing collections of labels

2014-12-03 Thread Tom Zeppenfeldt
I have a usecase in which certain actions should only be triggered for specific nodetypes. a nodetype is defined by a *combination* of labels. The nodetypes for which an action should take place is given by a nested collection of label combinations by something like [[a, b],[a,d,e]] . There

[Neo4j] Passing nested collection as cypher query parameter to REST endpoint

2014-12-02 Thread Tom Zeppenfeldt
I have an problem , probably related to passing a nested collection as a parameter to a cypher query.. In the browser, this works fine: MATCH n-[r]-m WHERE id(n) = 0 WITH CASE WHEN startnode(r)=n THEN (CASE WHEN endnode(r)=n THEN 'SELF' ELSE 'OUT' END) ELSE 'IN' END as direction,type(r) as

Re: [Neo4j] Passing nested collection as cypher query parameter to REST endpoint

2014-12-02 Thread Tom Zeppenfeldt
by the literal syntax could you try a list of maps instead ? On Tue, Dec 2, 2014 at 11:18 AM, Tom Zeppenfeldt tomzeppenfe...@gmail.com wrote: I have an problem , probably related to passing a nested collection as a parameter to a cypher query.. In the browser, this works fine: MATCH n

Re: [Neo4j] Passing nested collection as cypher query parameter to REST endpoint

2014-12-02 Thread Tom Zeppenfeldt
So this works: { query : MATCH n-[r]-m WHERE id(n) = 0 WITH CASE WHEN startnode(r)=n THEN (CASE WHEN endnode(r)=n THEN ' SELF' ELSE ' OUT' END) ELSE ' IN' END as direction,type(r) as typer,REDUCE(acc = '', p IN labels(m)| acc + ' :'+ p) AS mlabels,r WITH typer+mlabels+direction AS

[Neo4j] Re: New Structr SNAPSHOT version - with integrated Neo4j server!

2014-11-12 Thread Tom Zeppenfeldt
Hi guys, I'm running the 11 snapshot now. The phrase You just have to add 'Neo4jService' to the list of configured services is too cryptic for me. Just too many places where I can configure stuff, including services on my Mac. Any explication would be welcome. Thanks On Monday, 10 November

[Neo4j] Re: New Structr SNAPSHOT version - with integrated Neo4j server!

2014-11-10 Thread Tom Zeppenfeldt
Hi Axel, This sounds like fun. Surely will try to run our Prologram viz thingy against this server! You state that it bypasses security. Does it also bypass any data-integrity rules like cardinality and other stuff we created through the Structr schema? Best, Tom On Monday, 10 November

Re: [Neo4j] Specifying repeating path patterns in Cypher.

2014-10-31 Thread Tom Zeppenfeldt
would modeling this way work ? (a:City)-[:FROM]-(f:Flight)-[:TO]-(b:City) and matching it against (a)-[:FROM|TO*2..12]-(b) Having Flight nodes makes sense I guess, especially when you want to link for instance crewmembers or passengers to the flight. HtH Met vriendelijke groet / With

Re: [Neo4j] Neo4j and ZUI

2014-09-06 Thread Tom Zeppenfeldt
ZUI was not on our radar. We looked into zoomcharts https://zoomcharts.com/en/ Met vriendelijke groet / With kind regards Ir. T. Zeppenfeldt van der Waalsstraat 30 6706 JR Wageningen The Netherlands Mobile: +31 6 23 28 78 06 Phone: +31 3 17 84 22 17 E-mail: t.zeppenfe...@ophileon.com

Re: [Neo4j] Any plans for an optional schema?

2014-07-16 Thread Tom Zeppenfeldt
sounds like structr.org may be something you want to look at .. Met vriendelijke groet / With kind regards Ir. T. Zeppenfeldt van der Waalsstraat 30 6706 JR Wageningen The Netherlands Mobile: +31 6 23 28 78 06 Phone: +31 3 17 84 22 17 E-mail: t.zeppenfe...@ophileon.com

[Neo4j] Re: Multiple hierarchical facets continued

2014-06-30 Thread Tom Zeppenfeldt
Hi all, I'm still stuck here :( . Not sure what it means that I haven't received any suggestions. Is there no possibility to do this in a single query or is the question not clear? Best, Tom On Wednesday, 25 June 2014 14:39:42 UTC+2, Tom Zeppenfeldt wrote: Hi all, Recently I worked

[Neo4j] Retrieving a list of all properties of nodes having a specific label .. is it possible?

2014-06-27 Thread Tom Zeppenfeldt
Is there a way to retrieve from an existing db a list of properties that are linked to 1 or more nodes having a specific label? So, if I've created (n:label1 {prop1: 'prop1value'}) (m:label1 {prop2 : 'prop2value'}) a call like /db/data/labels/*label1*/properties would return

[Neo4j] Parameters in statements through transactional HTTP endpoint?

2014-06-26 Thread Tom Zeppenfeldt
POSTing this : { statements : [ { statement : match(uc:usercase {name:{name}}) return uc, params: { name : myname }, resultDataContents : [ graph ] } ] } to the transactional endpoint returns: { commit: http://mydomain.com:7474/db/data/transaction/106/commit;,

Re: [Neo4j] Parameters in statements through transactional HTTP endpoint?

2014-06-26 Thread Tom Zeppenfeldt
-mail: t.zeppenfe...@ophileon.com t.zeppenfe...@ophileon.comWeb: www.ophileon.com Twitter: tomzeppenfeldt Skype: tomzeppenfeldt 2014-06-26 15:23 GMT+02:00 Michael Hunger michael.hun...@neotechnology.com : parameters Not params Sent from mobile device Am 26.06.2014 um 10:46 schrieb Tom

[Neo4j] Multiple hierarchical facets continued

2014-06-25 Thread Tom Zeppenfeldt
Hi all, Recently I worked with Michael Hunger on a typical faceted search case, but since we haven't found the holy grail yet, I'm also sharing our findings over here. The dropboxlink https://www.dropbox.com/s/65rc2sz6p2lrpge/TomZepFacets.tar.gz contains a Neo4j 2.1.2 db with about 6000

Re: [Neo4j] Hierarchical facets

2014-06-17 Thread Tom Zeppenfeldt
queries take 14s? Still way too long. On Wed, May 21, 2014 at 3:40 PM, Tom Zeppenfeldt tomzeppenfe...@gmail.com wrote: I have some problems starting the shell from my Mac Terminal (it's giving me a out of mem error) , but form the webadmin powerconsole. Can't find any documentation either on how

[Neo4j] Relationships corrupted after upgrade to 2.1.1 ?

2014-06-01 Thread Tom Zeppenfeldt
After upgrading from 2.0.3. to 2.1.1 some of my cypher queries return errors on a specific node: match (n)-[r]-(m) where id(n)=6620 return n Unable to load one or more relationships from Node[6620]. This usually happens when relationships are deleted by someone else just as we are about to

[Neo4j] Re: relations between group on nodes

2014-05-26 Thread Tom Zeppenfeldt
Assuming that you can identify the 100 nodes // MATCH and/or filter the 100 nodes MATCH (n) WHERE // put the nodes in a collection WITH collect(n) AS mynodes // get als the relations withing the context of the collection MATCH (n)-[r]-(m) WHERE (n IN mynodes) AND (m IN mynodes) RETURN

Re: [Neo4j] Hierarchical facets

2014-05-22 Thread Tom Zeppenfeldt
, 2014 at 3:40 PM, Tom Zeppenfeldt tomzeppenfe...@gmail.com wrote: I have some problems starting the shell from my Mac Terminal (it's giving me a out of mem error) , but form the webadmin powerconsole. Can't find any documentation either on how to set shell to have me return profile. neo4j-sh

[Neo4j] Hierarchical facets

2014-05-21 Thread Tom Zeppenfeldt
Hi, after publishing this graphgist http://gist.neo4j.org/?05d92f567adbe971afc5 , Michael suggested to change the pattern and providing a profile. This is the result: The query is { query : match (j:jurt)-[:HAS_TERM]-()-[:BT*0..]-(t:term)-[:BT*0..1]-(t2:term {name:{termname}}) return

Re: [Neo4j] Hierarchical facets

2014-05-21 Thread Tom Zeppenfeldt
I have some problems starting the shell from my Mac Terminal (it's giving me a out of mem error) , but form the webadmin powerconsole. Can't find any documentation either on how to set shell to have me return profile. neo4j-sh (?)$ export termname=Eurovoc *Your first Query* neo4j-sh (?)$ match

Re: [Neo4j] Hierarchical facets

2014-05-21 Thread Tom Zeppenfeldt
...@ophileon.comWeb: www.ophileon.com Twitter: tomzeppenfeldt Skype: tomzeppenfeldt 2014-05-21 16:36 GMT+02:00 Michael Hunger michael.hun...@neotechnology.com : Prefix your query with profile Sent from mobile device Am 21.05.2014 um 15:40 schrieb Tom Zeppenfeldt tomzeppenfe...@gmail.com: I have

[Neo4j] Re: Cartesian product in Neo4j

2014-05-02 Thread Tom Zeppenfeldt
Assuming that you have nodes representing suit en value, all cards can be created like this. match (s:suit),(v:value) with s,v create (s)-[:SUIT]-(c:CARD)-[:VALUE]-(v) Best, Tom On Friday, 2 May 2014 22:33:15 UTC+2, Gabriel Peschl wrote: Hi everyone, I would like know how I can perform a

[Neo4j] Re: Bug in cypher when filtering collection ?

2014-04-19 Thread Tom Zeppenfeldt
Hi Lundin, Thanks a lot for your replies and efforts to find a workaround. I finally decided to use the explicit typecasting, and build the rest of the cypher statement which now looks as this: MATCH (p:project {name:

[Neo4j] Re: Any pros/cons between relationship vs. relationship node?

2014-04-18 Thread Tom Zeppenfeldt
Pros - you can use the intermediate nodes to link other nodes to, instead of providing nodeids as values of relationship properties - it allows you to create a system to version networks Cons - longer paths, more complex queries - managing the rels between the principal nodes is more complex,

[Neo4j] Re: Bug in cypher when filtering collection ?

2014-04-18 Thread Tom Zeppenfeldt
created console here http://console.neo4j.org/?id=s0kf37 -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@googlegroups.com. For more options, visit

Re: [Neo4j] Re: Any pros/cons between relationship vs. relationship node?

2014-04-18 Thread Tom Zeppenfeldt
I guess having both unnecessarily complicates the model. I'd get rid of the direct one, since apparently you need the intermediate node. You can always recreate it on the basis of the rels through the intermediate node. And eh... may I kindly suggest to rethink the title of your next post ;)

[Neo4j] Issues creating a gist (//graph keeps displaying results of first query)

2014-03-25 Thread Tom Zeppenfeldt
I have created a gist at http://gist.neo4j.org/?9758285 but the //graph tag doesn't seem to display the graph corresponding to the last query. //table seems to work fine. What am I doing wrong ? -- You received this message because you are subscribed to the Google Groups Neo4j group.

Re: [Neo4j] Issues creating a gist (//graph keeps displaying results of first query)

2014-03-25 Thread Tom Zeppenfeldt
Thanks for pointing it out. Should have read it more carefully. Indeed too bad that filtering doesn't apply to graphs. Besides, when running a cypher in the console I included in the gist , like match (n) return id(n) it returns 0 rows, which is weird too. -- You received

Re: [Neo4j] Issues creating a gist (//graph keeps displaying results of first query)

2014-03-25 Thread Tom Zeppenfeldt
Thanks for the feedback and looking forward to //graph returning highlighted results. .. And to further improving my own gisting skills (this was my first) -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and

[Neo4j] Re: find difference between 2 collection of paths

2014-03-23 Thread Tom Zeppenfeldt
as an idea , not tested.. match p=(n)-[:REL1*]-(m) where NOT n-[:REL2*]-m return n,m or return p -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [Neo4j] Re: find difference between 2 collection of paths

2014-03-23 Thread Tom Zeppenfeldt
hard to say without any idea about the far more complex stuff you're trying to achieve, and the comparisons you'd like to do .. -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop receiving emails from it, send an

Re: [Neo4j] first time a query is run it produces different results in 2.1.0-M01

2014-03-19 Thread Tom Zeppenfeldt
and will be included in the next milestone. 2014-03-08 19:29 GMT+01:00 Tom Zeppenfeldt tomzepp...@gmail.comjavascript: : And yes.. it happens with other queries as well .. and query times are a lot longer then expected with a db of this size, although I indexed the crucial parts. neo4j-sh

Re: [Neo4j] Tuning/ performance / predictability

2014-03-19 Thread Tom Zeppenfeldt
Michael, are there any new insights on this ? We are still at 4 seconds to do this on Neo4j 2.0.1 against 0.17 secs on a MariaDB instance with a comparable query. -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop

Re: [Neo4j] Tuning/ performance / predictability

2014-03-14 Thread Tom Zeppenfeldt
run this shell against server or standalone with memory config changed? I mean it has to pull through 500.000 paths, group them by j2 and sort them into the size 3 top-window. But still it shouldn't take that long. Still investingating, sorry. Am 10.03.2014 um 13:40 schrieb Tom Zeppenfeldt

Re: [Neo4j] Tuning/ performance / predictability

2014-03-11 Thread Tom Zeppenfeldt
Hi Michael, could you perhaps share your neo4j-shell for me to learn from. I'm still very far away from the 1.6 secs that you were able to achieve. Best, Tom -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop

Re: [Neo4j] Tuning/ performance / predictability

2014-03-10 Thread Tom Zeppenfeldt
the 2.1 store with me or the loadcsv script with your csv files Thanks for all the great feedback btw Can you send me your postal address and t-shirt size? Thx Sent from mobile device Am 09.03.2014 um 19:08 schrieb Tom Zeppenfeldt t.zepp...@ophileon.comjavascript: : Ok Michael

Re: [Neo4j] Tuning/ performance / predictability

2014-03-10 Thread Tom Zeppenfeldt
Hi Michael, explanation. doing import-cypher now. just wondering whether (on the 8 GB machine with specs at start of this thread, except for now working with Neo4j 2.0.1) performance for creating rels as below is normal. Creating nodes is fast, but when i'm creating 1.2M rels I'm looking

Re: [Neo4j] Tuning/ performance / predictability

2014-03-10 Thread Tom Zeppenfeldt
perhaps needless to say that indexes are set Indexes ON :domain(id)ONLINE ON :instantie(id) ONLINE ON :jurt(jurt_id) ONLINE ON :rechter(id) ONLINE ON :term(id) ONLINE No constraints -- You received this message because you are subscribed to the Google

Re: [Neo4j] Tuning/ performance / predictability

2014-03-10 Thread Tom Zeppenfeldt
no problem .. I figured out that I had to use the terms and the 1.2M went in under 2 minutes :) now back to our query match (j1:jurt)-[:HAS_TERM]-(t)-[:HAS_TERM]-(j2) where j1.jurt_id = 'J7' AND j2 j1 RETURN j2,count(*) as commonterms order by commonterms desc limit 3; still over 4

[Neo4j] Tuning/ performance / predictability

2014-03-09 Thread Tom Zeppenfeldt
I'm already stuck for a couple of days with a performance problem, or even queries that do not produce predictable results. I posted this one before, but now, after upgrading the machine from 2 to 8GB (hoping it was a lack of memory issue) , I don't know how to solve this. *Environment : *

Re: [Neo4j] Tuning/ performance / predictability

2014-03-09 Thread Tom Zeppenfeldt
Hi Michael, thanks for your apparently not so lazy Sunday feed-back. I'm aware that it's not production-fähig. We're using this sandbox it hoping to demo what Neo4j is capable of :S Tried the suggested query. No luck however. This is what I got (in over 6 secs) . And yes i had an index on

Re: [Neo4j] Tuning/ performance / predictability

2014-03-09 Thread Tom Zeppenfeldt
query is executed as follows, in which I spot: _rows : 478380, _db_hits : 956760, which is actually higher (= worse ??) than the original .. { columns : [ j1.jurt_id, j2.jurt_id, commonterms ], data : [ [ J7, J72191, 68 ], [ J7, J73483, 67 ], [ J7,

Re: [Neo4j] Tuning/ performance / predictability

2014-03-09 Thread Tom Zeppenfeldt
profile from shell.. ColumnFilter(symKeys=[j1.jurt_id, j2.jurt_id, INTERNAL_AGGREGATEd3566f14-1679-46b2-8844-2ae2b273e7b6], returnItemNames=[j1.jurt_id, j2.jurt_id, commonterms], _rows=3, _db_hits=0) Top(orderBy=[SortItem(Cached( INTERNAL_AGGREGATEd3566f14-1679-46b2-8844-2ae2b273e7b6

Re: [Neo4j] Tuning/ performance / predictability

2014-03-09 Thread Tom Zeppenfeldt
neo4j-sh (?)$ profile match (j1:jurt)-[:HAS_TERM]-(t)-[:HAS_TERM]-(j2) where j1.jurt_id = {jurtid} and j2.jurt_id{jurtid} return j1.jurt_id,j2.jurt_id, count(t) as commonterms order by commonterms desc limit 3; +---+ | j1.jurt_id | j2.jurt_id |

Re: [Neo4j] Tuning/ performance / predictability

2014-03-09 Thread Tom Zeppenfeldt
in 2.0.1? You can import the data using my shell-import-tools Or just generate textual cypher statements from load-csv Sent from mobile device Am 09.03.2014 um 16:11 schrieb Tom Zeppenfeldt tomzeppenfe...@gmail.com: query is executed as follows, in which I spot: _rows : 478380

Re: [Neo4j] first time a query is run it produces different results in 2.1.0-M01

2014-03-08 Thread Tom Zeppenfeldt
://bit.ly/graphgist Am 07.03.2014 um 23:02 schrieb Tom Zeppenfeldt tomzepp...@gmail.comjavascript: : I have a graph db with about 1 docs (:jurt) and about 12000 terms (t:Term) from a vocabulary. There are about 1.2M relationships of type (j:jurt)-[:HAS_TERM]-(t:Term

[Neo4j] first time a query is run it produces different results in 2.1.0-M01

2014-03-07 Thread Tom Zeppenfeldt
I have a graph db with about 1 docs (:jurt) and about 12000 terms (t:Term) from a vocabulary. There are about 1.2M relationships of type (j:jurt)-[:HAS_TERM]-(t:Term) To find out which documents are similar to a given document, based on a count of common terms, I use this query match

[Neo4j] Re: first time a query is run it produces different results in 2.1.0-M01

2014-03-07 Thread Tom Zeppenfeldt
This is the plan that is returned with profile=true { columns : [ j1.jurt_id, j2.jurt_id, commonterms ], data : [ [ J69478, J70059, 281 ], [ J69478, J75545, 214 ], [ J69478, J72887, 209 ] ], plan : { args : { returnItemNames : [ j1.jurt_id, j2.jurt_id, commonterms ], _rows

Re: [Neo4j] no results when not providing label ? 2.1.0-M01

2014-03-06 Thread Tom Zeppenfeldt
}| ++ 50 rows 331 ms Am 05.03.2014 um 15:10 schrieb Tom Zeppenfeldt tomzepp...@gmail.comjavascript: : Michiel, sorry I overlooked this series of questions On Tuesday, 4 March 2014 21:45:30 UTC+1, Michael Hunger wrote: The nodes

Re: [Neo4j] no results when not providing label ? 2.1.0-M01

2014-03-05 Thread Tom Zeppenfeldt
) at this moment, the db only contains the :Term nodes. Michael Am 04.03.2014 um 21:33 schrieb Tom Zeppenfeldt tomzepp...@gmail.comjavascript: : micheal, just a quick reply because i'm on the road: - it was a brand new clean install - nodes loaded with new LOAD FROM CSV procedure - no indexes

Re: [Neo4j] no results when not providing label ? 2.1.0-M01

2014-03-05 Thread Tom Zeppenfeldt
March 2014 15:10:05 UTC+1, Tom Zeppenfeldt wrote: Michiel, sorry I overlooked this series of questions On Tuesday, 4 March 2014 21:45:30 UTC+1, Michael Hunger wrote: The nodes that are returned, do they actually have the :Term label? yes they do .. tested with match (t:Term) return t.name

Re: [Neo4j] no results when not providing label ? 2.1.0-M01

2014-03-04 Thread Tom Zeppenfeldt
. http://blog.neo4j.org/2013/11/neo4j-200-rc1-final-preparations.html Did you create any indexes? Can you add a ?profile=true to the endpoint to show the profile Michael Am 04.03.2014 um 02:54 schrieb Tom Zeppenfeldt tomzepp...@gmail.comjavascript: : This query to http://mydomain.com:7474

Re: [Neo4j] no results when not providing label ? 2.1.0-M01

2014-03-04 Thread Tom Zeppenfeldt
, That looks like it should work to me. Is it easy to recreate? Could you give some steps to reproduce or a small test that shows it breaking and we can look at it. Cheers Mark On 4 March 2014 01:54, Tom Zeppenfeldt tomzeppenfe...@gmail.com wrote: This query to http://mydomain.com:7474/db/data

Re: [Neo4j] installation issues 2.1.0-M01

2014-02-24 Thread Tom Zeppenfeldt
-community-2.1.0-M01/data/ and if so with which user permissions? Am 24.02.2014 um 01:55 schrieb Tom Zeppenfeldt tomzepp...@gmail.comjavascript: : Michael, uncommenting the line in neo4j-server.properties ( which is BTW in my case in the /etc/neo4j-community-2.1.0-M01/conf folder) did

Re: [Neo4j] installation issues 2.1.0-M01

2014-02-24 Thread Tom Zeppenfeldt
Michael, with bash everything went ok: so complete procedure with new machine - unzip tar.gz - install java sdk 7 - uncomment org.neo4j.server.webserver.address=0.0.0.0 in neo4j-server.properties - ./bin/neo4j start no more fish for me! -- You received this message because you are

[Neo4j] New LOAD CSV functionality in 2.1.0-M01

2014-02-24 Thread Tom Zeppenfeldt
Hi, played a little bit with this http://docs.neo4j.org/chunked/milestone/import-importing-data-from-multiple-csv-files.html , seems working nicely as long as you have a separate relation file for each relation-type. Is it possible to read the relation type from the csv using this procedure

Re: [Neo4j] installation issues 2.1.0-M01

2014-02-24 Thread Tom Zeppenfeldt
Thank you too. You may want to have this somewhere on your How to install pages especially the 0.0.0.0 part :) BTW : another reason why the debian package didn't work (probabbly) : I was running Ubuntu :) stupid me Best Tom -- You received this message because you are

[Neo4j] Re: New LOAD CSV functionality in 2.1.0-M01

2014-02-24 Thread Tom Zeppenfeldt
As you say , it's kinda horrible .. but as a workaround it will do for the moment :) -- You received this message because you are subscribed to the Google Groups Neo4j group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Neo4j] Re: New LOAD CSV functionality in 2.1.0-M01

2014-02-24 Thread Tom Zeppenfeldt
Another thing I noticed: When uploading a file with about 8000 thesaurus relations, and although I used a construct like USING PERIODIC COMMIT LOAD CSV FROM http:/myserver.com/neo4j/eurovoc_broader.csv AS csvLine MATCH (t:Term { id: toInt(csvLine[0])}),(bt:Term { id: toInt( csvLine[1])})

[Neo4j] installation issues 2.1.0-M01

2014-02-23 Thread Tom Zeppenfeldt
tried to get in running on my server , but can't get it running - downloaded the Mac/Linux tar.gz - extracted in to my debian machine to a new dir - when ./bin/neo4j start , I get this root@NOWledge /e/neo4j-community-2.1.0-M01# ./bin/neo4j start WARNING: Max 1024 open files allowed, minimum

Re: [Neo4j] installation issues 2.1.0-M01

2014-02-23 Thread Tom Zeppenfeldt
are just warnings - they shouldn't stop it from starting. Can you paste the contents of data/log/console.log? Mark On 23 February 2014 19:43, Tom Zeppenfeldt tomzeppenfe...@gmail.comwrote: tried to get in running on my server , but can't get it running - downloaded the Mac/Linux tar.gz

[Neo4j] Re: ignore case search Neo4j

2014-01-30 Thread Tom Zeppenfeldt
Case insensitive searches can be done with regular expressions, e.g. match (n:Person) where n.name=~'(?i).*a.*' return n.name which would also return results including Andre, andre, Michael On Thursday, 30 January 2014 14:17:53 UTC+1, Navrattan Yadav wrote: hi. i am using Neo4j 2.0. I want