-
Notifications
You must be signed in to change notification settings - Fork 0
/
sorted-messages.json
1 lines (1 loc) · 201 KB
/
sorted-messages.json
1
[{"type":"message","id":"62751","href":"/messages/62751","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/adjacency-matrix/td-p/62751","author":{"type":"user","id":"2735","href":"/users/2735","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/2735","login":"redha_benhisse1"},"subject":"Adjacency matrix","search_snippet":"Hi everyone \n I would like to find the adjacency matrix of the following bipartite graph \n \n if the link exists, the matrix takes the value revenue. otherwise, it takes 0. \n MATCH (c:customer...","body":"<P>Hi everyone</P>\n<P>I would like to find the adjacency matrix of the following bipartite graph</P>\n<P><span class=\"lia-inline-image-display-wrapper lia-image-align-inline\" image-alt=\"redha_benhisse1_0-1669936093203.jpeg\" style=\"width: 400px;\"><img src=\"https://community.neo4j.com/t5/image/serverpage/image-id/7678iE097F6BBC2643319/image-size/medium/is-moderation-mode/true?v=v2&px=400\" role=\"button\" title=\"redha_benhisse1_0-1669936093203.jpeg\" alt=\"redha_benhisse1_0-1669936093203.jpeg\" /></span></P>\n<P>if the link exists, the matrix takes the value revenue. otherwise, it takes 0.</P>\n<PRE dir=\"ltr\"><CODE class=\"hljs language-cypher\"><SPAN class=\"hljs-keyword\">MATCH</SPAN> (c:customer)\n<SPAN class=\"hljs-keyword\">WITH</SPAN><SPAN class=\"hljs-functionCall\"> <SPAN class=\"hljs-built_in\">collect</SPAN>(c)</SPAN> <SPAN class=\"hljs-keyword\">AS</SPAN> cust\n<SPAN class=\"hljs-keyword\">UNWIND</SPAN> cust <SPAN class=\"hljs-keyword\">AS</SPAN> a\n<SPAN class=\"hljs-keyword\">MATCH</SPAN> (p:part)\n<SPAN class=\"hljs-keyword\">WITH</SPAN><SPAN class=\"hljs-functionCall\"> <SPAN class=\"hljs-built_in\">collect</SPAN>(p)</SPAN> <SPAN class=\"hljs-keyword\">AS</SPAN> par\n<SPAN class=\"hljs-keyword\">UNWIND</SPAN> par <SPAN class=\"hljs-keyword\">AS</SPAN> b\n<SPAN class=\"hljs-keyword\">RETURN</SPAN> a.id <SPAN class=\"hljs-keyword\">AS</SPAN> cutomer, b.id <SPAN class=\"hljs-keyword\">AS</SPAN> part, \n<SPAN class=\"hljs-keyword\">CASE</SPAN> \n<SPAN class=\"hljs-keyword\">WHEN</SPAN><SPAN class=\"hljs-functionCall\"> <SPAN class=\"hljs-built_in\">EXISTS</SPAN>((a)</SPAN>-[r:customer_to_part]->(b)) <SPAN class=\"hljs-keyword\">THEN</SPAN> <SPAN class=\"hljs-number\">r.revenue</SPAN> \n<SPAN class=\"hljs-keyword\">ELSE</SPAN> <SPAN class=\"hljs-number\">0</SPAN> \n<SPAN class=\"hljs-keyword\">END</SPAN> <SPAN class=\"hljs-keyword\">AS</SPAN> value</CODE></PRE>\n<P>But this does not work.</P>\n<P>Can you please help me to find the right matrix</P>\n<P> </P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62751","href":"/conversations/62751","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/adjacency-matrix/td-p/62751","style":"forum","thread_style":"forum","messages_count":3,"solved":true,"last_post_time":"2022-12-03T04:47:39.749-08:00","last_post_time_friendly":"12-03-2022"},"topic":{"type":"message","id":"62751","href":"/messages/62751","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/adjacency-matrix/m-p/62751#M37078"},"post_time":"2022-12-01T15:14:50.517-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":182},"current_revision":{"type":"revision","id":"62751_1","last_edit_author":{"type":"user","id":"2735","href":"/users/2735","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/2735","login":"redha_benhisse1"},"last_edit_time":"2022-12-01T15:14:50.517-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62751'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62751'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62751'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62751'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62751'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62751'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62751'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62751'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62751'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_106_0","popularity":-1287.8998730555556,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62747","href":"/messages/62747","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/find-similarity-of-given-node-with-entire-graph/td-p/62747","author":{"type":"user","id":"15906","href":"/users/15906","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15906","login":"tony156"},"subject":"Find similarity of given node with entire graph","search_snippet":"Hi, I'm new to neo4j. I'm trying to use knn in gds do calculate similarities. I understand that knn calculates similarities between all pairs of nodes in the graph and find the most similar k nodes. ...","body":"<P>Hi, I'm new to neo4j. I'm trying to use knn in gds do calculate similarities. I understand that knn calculates similarities between all pairs of nodes in the graph and find the most similar k nodes. However, what I'm looking for is, for given a node N, I need to find the node in the database that is most similar to N. How can I achieve this goal? Thank you for your help.</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62747","href":"/conversations/62747","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/find-similarity-of-given-node-with-entire-graph/td-p/62747","style":"forum","thread_style":"forum","messages_count":10,"solved":false,"last_post_time":"2022-12-08T11:58:19.043-08:00","last_post_time_friendly":"12-08-2022"},"topic":{"type":"message","id":"62747","href":"/messages/62747","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/find-similarity-of-given-node-with-entire-graph/m-p/62747#M37077"},"post_time":"2022-12-01T14:40:40.813-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":383},"current_revision":{"type":"revision","id":"62747_1","last_edit_author":{"type":"user","id":"15906","href":"/users/15906","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15906","login":"tony156"},"last_edit_time":"2022-12-01T14:40:40.813-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62747'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62747'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62747'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62747'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62747'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62747'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62747'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62747'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62747'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1288.4692586111112,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62737","href":"/messages/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/td-p/62737","author":{"type":"user","id":"15788","href":"/users/15788","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15788","login":"kashu94"},"subject":"Updating maps doesn't work using APOC library","search_snippet":"I have my edge attributes in the form of dictionaries as we'd refer in python or maps. I was testing the working of updating one such edge attribute using APOC library. So, let's say I have an edge a...","body":"<P>I have my edge attributes in the form of dictionaries as we'd refer in python or maps. I was testing the working of updating one such edge attribute using APOC library. So, let's say I have an edge attribute qty_dict = {'5':1, '10':2}</P>\n<P>I was trying to update this by merging it with another such map, suppose <SPAN>{'5':2, '4':1, '3':3}. <BR />So, when I merge, I would like to see the resultant dict as qty_dict = </SPAN><SPAN>{'5':3, '4':1, '3':3, '10':2}</SPAN></P>\n<P><SPAN>Please have a look at what I've tried so far ...</SPAN></P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62737","href":"/conversations/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/td-p/62737","style":"forum","thread_style":"forum","messages_count":3,"solved":true,"last_post_time":"2022-12-01T11:29:46.104-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62737","href":"/messages/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/m-p/62737#M3844"},"post_time":"2022-12-01T09:17:46.639-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":261},"current_revision":{"type":"revision","id":"62737_1","last_edit_author":{"type":"user","id":"15788","href":"/users/15788","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15788","login":"kashu94"},"last_edit_time":"2022-12-01T09:17:46.639-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62737'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62737'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62737'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62737'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62737'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62737'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62737'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62737'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62737'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1293.8510261111112,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62735","href":"/messages/62735","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/need-no-code-json-data-load/td-p/62735","author":{"type":"user","id":"5","href":"/users/5","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/5","login":"yolande"},"subject":"Need no-code JSON Data Load?","search_snippet":"Help us shape the future of visual data mapping from JSON to graph by taking a few moments to review our survey. \n We're currently exploring extending the scope of Neo4j Data Importer (available both...","body":"<TABLE role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"10\">\n<TBODY>\n<TR>\n<TD>\n<P>Help us shape the future of visual data mapping from JSON to graph by taking a few moments to review our <A href=\"https://neo4j.typeform.com/to/UZeLaTp6\" target=\"_self\" rel=\"nofollow noopener noreferrer\">survey</A>.</P>\n<P>We're currently exploring extending the scope of Neo4j Data Importer (available both <A href=\"https://links.iterable.com/u/click?_t=1501d46330e04333829bd287b85f0c68&_m=1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL&_e=Tbv0ixXElABNbjsMcZw7fcrwj0q62TzHZg9x4DeWC5CKE40EepBie8EFn_wjfYKfsQR8gVsbupG7LqCKIDRN9obfhMR4TECjXdxpiXgQspIvixtmERrhaAfrRR2pChENSAfm47y_KKBkyFtJnyPEMGmeFhrxCbq1HD8VxGzOSxLvTBAGAWn637iqkbGglHR8lqyXNOI8QREtPte8WeZWRC05SolJrXAqIzMyhdhsUUo%3D\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-saferedirecturl=\"https://www.google.com/url?q=https://links.iterable.com/u/click?_t%3D1501d46330e04333829bd287b85f0c68%26_m%3D1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL%26_e%3DTbv0ixXElABNbjsMcZw7fcrwj0q62TzHZg9x4DeWC5CKE40EepBie8EFn_wjfYKfsQR8gVsbupG7LqCKIDRN9obfhMR4TECjXdxpiXgQspIvixtmERrhaAfrRR2pChENSAfm47y_KKBkyFtJnyPEMGmeFhrxCbq1HD8VxGzOSxLvTBAGAWn637iqkbGglHR8lqyXNOI8QREtPte8WeZWRC05SolJrXAqIzMyhdhsUUo%253D&source=gmail&ust=1670000396801000&usg=AOvVaw0Vxg6PY662pSDKc6ydmGGX\">standalone</A> and via <A href=\"https://links.iterable.com/u/click?_t=1501d46330e04333829bd287b85f0c68&_m=1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL&_e=Tbv0ixXElABNbjsMcZw7fQ3BuP5loVeeX5guxgng30dH9qX1P6CoangiyNE9WhKEuO2OI4BQ5cJ7XzBgnVG47Dewzk9s1D9UwtJm6kjeLaqXG249u_zYqGbkiPG6hscAOyuHY08VcJBZyLdPpNwBRglK9QV8ISQvwF-tx42sQ6NfmE7F6jUFK4kF5ROcIHqIKkvI97w1dtFbRUePyST3gakNoHkuZuH07XGM8XxRaMQ%3D\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-saferedirecturl=\"https://www.google.com/url?q=https://links.iterable.com/u/click?_t%3D1501d46330e04333829bd287b85f0c68%26_m%3D1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL%26_e%3DTbv0ixXElABNbjsMcZw7fQ3BuP5loVeeX5guxgng30dH9qX1P6CoangiyNE9WhKEuO2OI4BQ5cJ7XzBgnVG47Dewzk9s1D9UwtJm6kjeLaqXG249u_zYqGbkiPG6hscAOyuHY08VcJBZyLdPpNwBRglK9QV8ISQvwF-tx42sQ6NfmE7F6jUFK4kF5ROcIHqIKkvI97w1dtFbRUePyST3gakNoHkuZuH07XGM8XxRaMQ%253D&source=gmail&ust=1670000396801000&usg=AOvVaw0Z188yDDRN5rgq6cN6RkT1\">Workspace</A>) to support JSON in addition to Flat Files (CSV, TSV). Our aim is to give everyone a no-code approach to loading their JSON data into a graph and we'd love to hear more about your needs.</P>\n<P> </P>\n</TD>\n</TR>\n</TBODY>\n</TABLE>\n<TABLE role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"10\">\n<TBODY>\n<TR>\n<TD>\n<DIV align=\"center\"><A href=\"https://links.iterable.com/u/click?_t=1501d46330e04333829bd287b85f0c68&_m=1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL&_e=Tbv0ixXElABNbjsMcZw7fTQLX1k4P7OnuKr7rnS9pDWw6bTr6tLE9CmJe75dPkbuyd1z0WGqkUeyzk74A_WcVswhP7kbwONup7hdFqSLKNk5AwGrDFwF9vJjS1XGzTFV5a9WkWC9MfTEnuUgotqjDaBqDoaJtynC0JwGCTweDMELeQP9nkL25Uc214IfbGo6Fjle3w2tCPeHGtEEvvbQ3fxW1t1Gw6jAE4H5QnOsWdc%3D\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-saferedirecturl=\"https://www.google.com/url?q=https://links.iterable.com/u/click?_t%3D1501d46330e04333829bd287b85f0c68%26_m%3D1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL%26_e%3DTbv0ixXElABNbjsMcZw7fTQLX1k4P7OnuKr7rnS9pDWw6bTr6tLE9CmJe75dPkbuyd1z0WGqkUeyzk74A_WcVswhP7kbwONup7hdFqSLKNk5AwGrDFwF9vJjS1XGzTFV5a9WkWC9MfTEnuUgotqjDaBqDoaJtynC0JwGCTweDMELeQP9nkL25Uc214IfbGo6Fjle3w2tCPeHGtEEvvbQ3fxW1t1Gw6jAE4H5QnOsWdc%253D&source=gmail&ust=1670000396801000&usg=AOvVaw3ATiN-E-h_3ae6P6IyWWPP\"><SPAN>JSON Data Load Survey</SPAN></A></DIV>\n</TD>\n</TR>\n</TBODY>\n</TABLE>\n<TABLE role=\"presentation\" border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"10\">\n<TBODY>\n<TR>\n<TD>\n<DIV>\n<DIV>\n<P>Thanks for your interest and do reach out to us on our <A href=\"https://links.iterable.com/u/click?_t=1501d46330e04333829bd287b85f0c68&_m=1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL&_e=Tbv0ixXElABNbjsMcZw7fWh0E7JgwL_rWTSklw0nJt6vWW18Ylj9X30TPLI8AhpaYinitzVL1RMF2EUP8bMUTyu3pPkRwTatJmEsVQ7Jqcs4OWPRPylDglsFV99UqiB0GmErSx7mgplLJwaxTjQo3w6Y2whtBoh5-_lw8qd-TYCKcOyuyB3dYegvcfN6uQ-bNUMgiMgJuKqoOkeUCPcXHA%3D%3D\" target=\"_blank\" rel=\"noopener nofollow noreferrer\" data-saferedirecturl=\"https://www.google.com/url?q=https://links.iterable.com/u/click?_t%3D1501d46330e04333829bd287b85f0c68%26_m%3D1RVkmwePPHKu5pW0rc0uKu64P5XzsJKhL%26_e%3DTbv0ixXElABNbjsMcZw7fWh0E7JgwL_rWTSklw0nJt6vWW18Ylj9X30TPLI8AhpaYinitzVL1RMF2EUP8bMUTyu3pPkRwTatJmEsVQ7Jqcs4OWPRPylDglsFV99UqiB0GmErSx7mgplLJwaxTjQo3w6Y2whtBoh5-_lw8qd-TYCKcOyuyB3dYegvcfN6uQ-bNUMgiMgJuKqoOkeUCPcXHA%253D%253D&source=gmail&ust=1670000396801000&usg=AOvVaw2rwod1xC361JHzbjcwlk8j\">feedback page</A> if you have any questions.</P>\n</DIV>\n</DIV>\n</TD>\n</TR>\n</TBODY>\n</TABLE>\n<P> </P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62735","href":"/conversations/62735","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/need-no-code-json-data-load/td-p/62735","style":"forum","thread_style":"forum","messages_count":1,"solved":false,"last_post_time":"2022-12-01T09:11:44.442-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62735","href":"/messages/62735","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/need-no-code-json-data-load/m-p/62735#M37073"},"post_time":"2022-12-01T09:11:44.442-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":106},"current_revision":{"type":"revision","id":"62735_3","last_edit_author":{"type":"user","id":"5","href":"/users/5","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/5","login":"yolande"},"last_edit_time":"2022-12-01T09:17:29.457-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62735'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62735'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62735'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62735'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62735'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62735'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62735'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62735'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62735'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1293.9516427777778,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62727","href":"/messages/62727","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/help-with-data-import-and-creating-a-complex-relationship/td-p/62727","author":{"type":"user","id":"16011","href":"/users/16011","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16011","login":"erichan2046"},"subject":"Help with data import and creating a complex relationship","search_snippet":"Hi I'm a neo4j beginner. I want to build a complex relationship using csv file. \n \n company_name , ticker , isin , country , marketcap , industry , concept , concept_id , year_qua...","body":"<P>Hi I'm a neo4j beginner. I want to build a complex relationship using csv file. </P>\n<P> </P>\n<PRE><SPAN>company_name</SPAN><SPAN>,</SPAN><SPAN>ticker</SPAN><SPAN>,</SPAN><SPAN>isin</SPAN><SPAN>,</SPAN><SPAN>country</SPAN><SPAN>,</SPAN><SPAN>marketcap</SPAN><SPAN>,</SPAN><SPAN>industry</SPAN><SPAN>,</SPAN><SPAN>concept</SPAN><SPAN>,</SPAN><SPAN>concept_id</SPAN><SPAN>,</SPAN><SPAN>year_quarter</SPAN><SPAN>,</SPAN><SPAN>total_hits</SPAN><SPAN>,</SPAN><SPAN>total_documents<BR /></SPAN><SPAN>BBVA BANCO FRANCES ADR</SPAN><SPAN>,,</SPAN><SPAN>US0589341009</SPAN><SPAN>,</SPAN><SPAN>US</SPAN><SPAN>,</SPAN><SPAN>1200.0</SPAN><SPAN>,</SPAN><SPAN>Financial</SPAN><SPAN>,</SPAN><SPAN>Payment services</SPAN><SPAN>,</SPAN><SPAN>138</SPAN><SPAN>,</SPAN><SPAN>2017-03</SPAN><SPAN>,</SPAN><SPAN>1.0</SPAN><SPAN>,</SPAN><SPAN>1.0<BR /></SPAN><SPAN>BBVA BANCO FRANCES ADR</SPAN><SPAN>,,</SPAN><SPAN>US0589341009</SPAN><SPAN>,</SPAN><SPAN>US</SPAN><SPAN>,</SPAN><SPAN>1200.0</SPAN><SPAN>,</SPAN><SPAN>Financial</SPAN><SPAN>,</SPAN><SPAN>Digital banking </SPAN><SPAN>,</SPAN><SPAN>130</SPAN><SPAN>,</SPAN><SPAN>2017-03</SPAN><SPAN>,</SPAN><SPAN>5.0</SPAN><SPAN>,</SPAN><SPAN>1.0<BR /></SPAN><SPAN>BBVA BANCO FRANCES</SPAN><SPAN>,</SPAN><SPAN>FRAN</SPAN><SPAN>,</SPAN><SPAN>ARP125991090</SPAN><SPAN>,</SPAN><SPAN>AR</SPAN><SPAN>,</SPAN><SPAN>1213.25704</SPAN><SPAN>,</SPAN><SPAN>Financial</SPAN><SPAN>,</SPAN><SPAN>Payment services</SPAN><SPAN>,</SPAN><SPAN>138</SPAN><SPAN>,</SPAN><SPAN>2017-03</SPAN><SPAN>,</SPAN><SPAN>1.0</SPAN><SPAN>,</SPAN><SPAN>1.0</SPAN></PRE>\n<P>Here is the csv sample data.</P>\n<P>I want to build relationship like this (company_name,industry,concept) -[:hist{num:<SPAN>total_hits</SPAN>}->year_quarter] </P>\n<P>I'm very appreciate if you can help me.</P>\n<P> </P>\n<P>thanks </P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62727","href":"/conversations/62727","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/help-with-data-import-and-creating-a-complex-relationship/td-p/62727","style":"forum","thread_style":"forum","messages_count":2,"solved":false,"last_post_time":"2022-12-01T11:27:11.926-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62727","href":"/messages/62727","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/help-with-data-import-and-creating-a-complex-relationship/m-p/62727#M37065"},"post_time":"2022-12-01T08:20:46.771-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":84},"current_revision":{"type":"revision","id":"62727_1","last_edit_author":{"type":"user","id":"16011","href":"/users/16011","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16011","login":"erichan2046"},"last_edit_time":"2022-12-01T08:20:46.771-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62727'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62727'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62727'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62727'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62727'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62727'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62727'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62727'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62727'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_106","popularity":-1294.8010458333333,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62703","href":"/messages/62703","view_href":"https://community.neo4j.com/t5/introduce-yourself/hello-everyone-we-ve-just-joined-the-neo4j-startup-program-with/td-p/62703","author":{"type":"user","id":"16006","href":"/users/16006","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16006","login":"StefanGeissler"},"subject":"Hello, everyone, we've just joined the Neo4J Startup Program with our AI/NLP team at Kairntech.com","search_snippet":"Happy to be here. \n I am co founder at Kairntech.com. We specialize in the building AI/NLP software solutions that analyse large amounts of text for industry use cases. Naturally, results that come o...","body":"<P>Happy to be here.</P>\n<P>I am co founder at Kairntech.com. We specialize in the building AI/NLP software solutions that analyse large amounts of text for industry use cases. Naturally, results that come out of our analyses offer themselves to get imported into Graph Databases such as Neo4J for further analysis.</P>\n<P>This is why we have joined the program and we are looking forward to fruitful exchanges and good contacts in the community. In order to get an idea about what we do regarding Knowledge Graphs, you'll find more here (<A href=\"https://www.youtube.com/watch?v=lAY-B-yuZqU)\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://www.youtube.com/watch?v=lAY-B-yuZqU)</A> and here (<A href=\"https://kairntech.com/blog/news/knowledge-graph-visualizes-knowledge-on-psychoses-from-unstructured-literature/)\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://kairntech.com/blog/news/knowledge-graph-visualizes-knowledge-on-psychoses-from-unstructured-literature/)</A>.</P>\n<P>Enjoy,</P>\n<P>Stefan</P>","teaser":"","board":{"type":"board","id":"hello","href":"/boards/hello","view_href":"https://community.neo4j.com/t5/introduce-yourself/bd-p/hello"},"conversation":{"type":"conversation","id":"62703","href":"/conversations/62703","view_href":"https://community.neo4j.com/t5/introduce-yourself/hello-everyone-we-ve-just-joined-the-neo4j-startup-program-with/td-p/62703","style":"forum","thread_style":"forum","messages_count":1,"solved":false,"last_post_time":"2022-12-01T02:59:35.013-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62703","href":"/messages/62703","view_href":"https://community.neo4j.com/t5/introduce-yourself/hello-everyone-we-ve-just-joined-the-neo4j-startup-program-with/m-p/62703#M2770"},"post_time":"2022-12-01T02:59:35.013-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":98},"current_revision":{"type":"revision","id":"62703_1","last_edit_author":{"type":"user","id":"16006","href":"/users/16006","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16006","login":"StefanGeissler"},"last_edit_time":"2022-12-01T02:59:35.013-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62703'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62703'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62703'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62703'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62703'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62703'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62703'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62703'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62703'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_106_0","popularity":0.00002128169633097235,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/td-p/62702","author":{"type":"user","id":"15587","href":"/users/15587","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15587","login":"amina"},"subject":"queries cross graphs","search_snippet":"Hello, \n I'm using a composite database KB that includes two graphs KB.actors and KB.searches \n I need to get information about actors that are in KB.actors graph using ids of actors that are the res...","body":"<P>Hello,</P>\n<P>I'm using a composite database KB that includes two graphs KB.actors and KB.searches</P>\n<P>I need to get information about actors that are in KB.actors graph using ids of actors that are the result of a filtre on KB.searches.</P>\n<P>I tried this query:</P>\n<P> </P>\n<DIV><SPAN>USE KB</SPAN><SPAN>.</SPAN><SPAN>searches</SPAN></DIV>\n<DIV><SPAN>MATCH</SPAN><SPAN>(</SPAN><SPAN>n</SPAN><SPAN>:</SPAN><SPAN>Company</SPAN><SPAN>) WHERE ...</SPAN></DIV>\n<DIV> </DIV>\n<DIV> </DIV>\n<DIV> </DIV>\n<DIV><SPAN>WITH</SPAN><SPAN> n</SPAN><SPAN>.</SPAN><SPAN>entityId </SPAN><SPAN>as</SPAN><SPAN> companyId</SPAN></DIV>\n<DIV> </DIV>\n<DIV><SPAN>USE KB</SPAN><SPAN>.</SPAN><SPAN>actors </SPAN></DIV>\n<DIV><SPAN>MATCH</SPAN><SPAN>(</SPAN><SPAN>n</SPAN><SPAN>:</SPAN><SPAN>Company</SPAN><SPAN>)-[:</SPAN><SPAN>ALIAS</SPAN><SPAN>]->(</SPAN><SPAN>a</SPAN><SPAN>:</SPAN><SPAN>Alias</SPAN><SPAN>)</SPAN></DIV>\n<DIV><SPAN>WHERE</SPAN><SPAN> n</SPAN><SPAN>.</SPAN><SPAN>entityId</SPAN><SPAN>=</SPAN><SPAN>companyId</SPAN></DIV>\n<DIV><SPAN>RETURN</SPAN><SPAN> companyId</SPAN><SPAN>,</SPAN> <SPAN>a</SPAN><SPAN>.</SPAN><SPAN>term</SPAN></DIV>\n<P>The query doesn't work \"</P>\n<PRE class=\"sc-FNXRL bqwJmq\" data-testid=\"cypherFrameErrorMessage\">USE can only appear at the beginning of a (sub-)query\n\"USE geotrend.actors</PRE>\n<P>Is there any way to join data cross a composite database graphs? is it possible to do it?</P>\n<P>Thanks,<BR /><BR /><BR /> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"62702","href":"/conversations/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/td-p/62702","style":"forum","thread_style":"forum","messages_count":4,"solved":true,"last_post_time":"2022-12-01T07:25:45.314-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62702#M1660"},"post_time":"2022-12-01T02:50:51.577-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":247},"current_revision":{"type":"revision","id":"62702_1","last_edit_author":{"type":"user","id":"15587","href":"/users/15587","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15587","login":"amina"},"last_edit_time":"2022-12-01T02:50:51.577-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62702'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62702'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62702'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62702'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62702'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62702'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62702'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62702'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62702'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_96","popularity":-1300.2998708333334,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62694","href":"/messages/62694","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/getting-quot-the-transaction-has-been-closed-quot-error-while/td-p/62694","author":{"type":"user","id":"16004","href":"/users/16004","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16004","login":"Alexx"},"subject":"Getting \"The transaction has been closed.\" error while projecting a subgraph with GDS","search_snippet":"Hi! \n I'm trying to provide a WCC (weakly connected components) analysis for my graph \n It's very big. I'm trying to make a projection of my graph with \n gds.graph.project.cypher(MY_QUERY) \n But it ...","body":"<P>Hi!</P>\n<P>I'm trying to provide a WCC (weakly connected components) analysis for my graph</P>\n<P>It's very big. I'm trying to make a projection of my graph with </P>\n<P><STRONG>gds.graph.project.cypher(MY_QUERY)</STRONG></P>\n<P>But it doesn't work and returns the following:<BR /></P>\n<PRE class=\"sc-FNXRL bqwJmq\" data-testid=\"cypherFrameErrorMessage\">Failed to invoke procedure `gds.graph.project.cypher`: Caused by: org.neo4j.graphdb.NotInTransactionException: The transaction has been closed.</PRE>\n<P>And a funny moment is that when I manually reduce number of nodes in my projection it does work<BR /><BR />So <STRONG>question 1</STRONG><BR />How can I avoid this error? </P>\n<P><STRONG>Question 2 (optional)<BR /><BR /></STRONG>Further on, if my main graph gets some new relationships, do I have to start the whole procedure again? Or I can somehow use the results, computed 1 step before<BR />Or maybe I should use something else?<BR /><BR />Thank u in advance, badly need your help - I'm already about to give in</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62694","href":"/conversations/62694","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/getting-quot-the-transaction-has-been-closed-quot-error-while/td-p/62694","style":"forum","thread_style":"forum","messages_count":12,"solved":true,"last_post_time":"2022-12-07T01:52:17.796-08:00","last_post_time_friendly":"12-07-2022"},"topic":{"type":"message","id":"62694","href":"/messages/62694","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/getting-quot-the-transaction-has-been-closed-quot-error-while/m-p/62694#M37057"},"post_time":"2022-12-01T01:28:26.990-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":595},"current_revision":{"type":"revision","id":"62694_1","last_edit_author":{"type":"user","id":"16004","href":"/users/16004","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16004","login":"Alexx"},"last_edit_time":"2022-12-01T01:28:26.990-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62694'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62694'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62694'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62694'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62694'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62694'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62694'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62694'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62694'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"safari_16_0_mac","popularity":-1301.6734016666667,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62693","href":"/messages/62693","view_href":"https://community.neo4j.com/t5/events/learn-with-neo4j-deploy-neo4j-applications-using-netlify-7/td-p/62693","author":{"type":"user","id":"6807","href":"/users/6807","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/6807","login":"alexander_erdl1"},"subject":"Learn with Neo4j: Deploy Neo4j applications using Netlify - 7 December","search_snippet":"After Adam’s appearance on the Learn With Jason show earlier in the year to talk about Neo4j, we thought we would return the favour by inviting Jason to educate us on deploying our Neo4j projects usi...","body":"<P><SPAN>After Adam’s appearance on the Learn With Jason show earlier in the year to talk about Neo4j, we thought we would return the favour by inviting Jason to educate us on deploying our Neo4j projects using Netlify. We will look at the various Netlify features available for deploying a Node.js application that connects to a Neo4j Aura database. </SPAN></P>\n<P><SPAN>Jason Lengstorf <BR />Twitter: <A href=\"https://twitter.com/jlengstorf\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">https://twitter.com/jlengstorf </A><BR />Web: <A href=\"https://www.learnwithjason.dev/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">https://www.learnwithjason.dev/ </A></SPAN></P>\n<P><SPAN>Adam Cowley <BR />Twitter: <A href=\"https://twitter.com/adamcowley\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">https://twitter.com/adamcowley </A><BR />Adam on Learn with Jason: <A href=\"https://www.learnwithjason.dev/build-neo4j-applications-with-node-js\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">https://www.learnwithjason.dev/build-neo4j-applications-with-node-js</A> <BR /></SPAN></P>\n<P><SPAN>Watch live: <A href=\"https://youtu.be/e9k-I_CQ9Z8\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">https://youtu.be/e9k-I_CQ9Z8</A><BR />7 December 2022 - 9am PDT / 12pm EDT / 5pm GMT / 6pm CET / 10:30pm IST</SPAN></P>","teaser":"","board":{"type":"board","id":"events","href":"/boards/events","view_href":"https://community.neo4j.com/t5/events/bd-p/events"},"conversation":{"type":"conversation","id":"62693","href":"/conversations/62693","view_href":"https://community.neo4j.com/t5/events/learn-with-neo4j-deploy-neo4j-applications-using-netlify-7/td-p/62693","style":"forum","thread_style":"forum","messages_count":1,"solved":false,"last_post_time":"2022-12-01T00:51:46.869-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62693","href":"/messages/62693","view_href":"https://community.neo4j.com/t5/events/learn-with-neo4j-deploy-neo4j-applications-using-netlify-7/m-p/62693#M118"},"post_time":"2022-12-01T00:51:46.869-08:00","post_time_friendly":"12-01-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":125},"current_revision":{"type":"revision","id":"62693_2","last_edit_author":{"type":"user","id":"6807","href":"/users/6807","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/6807","login":"alexander_erdl1"},"last_edit_time":"2022-12-07T01:12:00.409-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62693'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62693'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62693'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62693'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62693'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62693'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62693'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62693'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62693'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_106_0","popularity":-1302.284553611111,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62691","href":"/messages/62691","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/cannot-connect-to-neo4j-aura-database-with-node-server-in-docker/td-p/62691","author":{"type":"user","id":"15442","href":"/users/15442","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15442","login":"DevDan"},"subject":"Cannot connect to Neo4j Aura database with Node server in docker container","search_snippet":"I'm currently using a database instance from Neo4j Aura. That works fine when trying to connect my Node GraphQL server locally or from Heroku. \n However, when I deployed my GraphQL server to a docke...","body":"<P>I'm currently using a database instance from Neo4j Aura. That works fine when trying to connect my Node GraphQL server locally or from Heroku. </P>\n<P>However, when I deployed my GraphQL server to a docker container, I'm getting the following error:</P>\n<P>Neo4jError: Failed to connect to server. Please ensure that your database is listening on the correct host and port and that you have compatible encryption settings both on Neo4j server and driver. Note that the default encryption setting has changed in Neo4j 4.0. Caused by: getaddrinfo ENOTFOUND <my-database>.databases.neo4j.io</P>\n<P>Is there some setting I'm overlooking?</P>\n<P>My env var for the neo4j connection is \"neo4j+s://<my-database>.databases.neo4j.io\"</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62691","href":"/conversations/62691","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/cannot-connect-to-neo4j-aura-database-with-node-server-in-docker/td-p/62691","style":"forum","thread_style":"forum","messages_count":2,"solved":true,"last_post_time":"2022-11-30T21:49:43.423-08:00","last_post_time_friendly":"11-30-2022"},"topic":{"type":"message","id":"62691","href":"/messages/62691","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/cannot-connect-to-neo4j-aura-database-with-node-server-in-docker/m-p/62691#M37055"},"post_time":"2022-11-30T21:41:56.293-08:00","post_time_friendly":"11-30-2022","depth":0,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":159},"current_revision":{"type":"revision","id":"62691_1","last_edit_author":{"type":"user","id":"15442","href":"/users/15442","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15442","login":"DevDan"},"last_edit_time":"2022-11-30T21:41:56.293-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62691'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62691'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62691'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62691'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62691'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62691'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62691'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62691'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62691'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1305.448613888889,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62753","href":"/messages/62753","view_href":"https://community.neo4j.com/t5/general-discussions/power-bi-live-load/m-p/62753#M3850","author":{"type":"user","id":"4143","href":"/users/4143","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/4143","login":"mengjiakang2017"},"subject":"Re: Power BI Live Load","search_snippet":"Hi @Akshay_Sharma , \n I think there is a post about using ODBC to connect from powerBI to neo4j. hope this helps - link","body":"<P>Hi <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15991\">@Akshay_Sharma</a> ,</P>\n<P>I think there is a post about using ODBC to connect from powerBI to neo4j. hope this helps - <A href=\"https://neo4j.com/developer-blog/connecting-to-neo4j-from-microsoft-power-bi-using-odbc/#:~:text=Connecting%20and%20Querying%20from%20PowerBI,in%20PowerBI%2C%20and%20click%20OK.&text=Once%20loaded%2C%20you%20can%20build,data%20from%20your%20Neo4j%20instance.\" target=\"_self\" rel=\"nofollow noopener noreferrer\">link</A></P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62627","href":"/conversations/62627","view_href":"https://community.neo4j.com/t5/general-discussions/power-bi-live-load/td-p/62627","style":"forum","thread_style":"forum","messages_count":2,"solved":false,"last_post_time":"2022-12-01T15:30:59.199-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62627","href":"/messages/62627","view_href":"https://community.neo4j.com/t5/general-discussions/power-bi-live-load/m-p/62627#M3832"},"parent":{"type":"message","id":"62627","href":"/messages/62627","view_href":"https://community.neo4j.com/t5/general-discussions/power-bi-live-load/m-p/62627#M3832"},"post_time":"2022-12-01T15:30:59.199-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":98},"current_revision":{"type":"revision","id":"62753_1","last_edit_author":{"type":"user","id":"4143","href":"/users/4143","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/4143","login":"mengjiakang2017"},"last_edit_time":"2022-12-01T15:30:59.199-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62753'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62753'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62753'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62753'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62753'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62753'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62753'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62753'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62753'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1287.63078,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62752","href":"/messages/62752","view_href":"https://community.neo4j.com/t5/general-discussions/docker-neo4j-admin-import-not-working/m-p/62752#M3849","author":{"type":"user","id":"4143","href":"/users/4143","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/4143","login":"mengjiakang2017"},"subject":"Re: Docker neo4j admin import not working","search_snippet":"Just an update that I tried- \n \n an earlier version 4.1.4 \n delete the store_lock file in dbmss/ folder \n use ./bin/neo4j/console to restart but got an error of failed to start the database (but it i...","body":"<P>Just an update that I tried-</P>\n<UL>\n<LI>an earlier version 4.1.4</LI>\n<LI>delete the store_lock file in dbmss/ folder</LI>\n<LI>use ./bin/neo4j/console to restart but got an error of failed to start the database (but it is actually running and can be connected from the browser)</LI>\n</UL>\n<P>I wonder if how we can stop the database properly so I can run the docker neo4j-admin import. Thanks!</P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62287","href":"/conversations/62287","view_href":"https://community.neo4j.com/t5/general-discussions/docker-neo4j-admin-import-not-working/td-p/62287","style":"forum","thread_style":"forum","messages_count":4,"solved":false,"last_post_time":"2022-12-01T15:25:55.590-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62287","href":"/messages/62287","view_href":"https://community.neo4j.com/t5/general-discussions/docker-neo4j-admin-import-not-working/m-p/62287#M3812"},"parent":{"type":"message","id":"62287","href":"/messages/62287","view_href":"https://community.neo4j.com/t5/general-discussions/docker-neo4j-admin-import-not-working/m-p/62287#M3812"},"post_time":"2022-12-01T15:25:55.590-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":201},"current_revision":{"type":"revision","id":"62752_1","last_edit_author":{"type":"user","id":"4143","href":"/users/4143","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/4143","login":"mengjiakang2017"},"last_edit_time":"2022-12-01T15:25:55.590-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62752'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62752'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62752'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62752'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62752'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62752'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62752'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62752'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62752'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1287.7151227777779,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62748","href":"/messages/62748","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/m-p/62748#M1352","author":{"type":"user","id":"15328","href":"/users/15328","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15328","login":"jp"},"subject":"Re: Neo4j Protocol Connection Issue","search_snippet":"Issue related to Kubernetes infrastructure and neo4j not routing correctly during ingress. We determined that our applications can communicate and connect with neo4j protocol fine when they are on th...","body":"<P>Issue related to Kubernetes infrastructure and neo4j not routing correctly during ingress. We determined that our applications can communicate and connect with neo4j protocol fine when they are on the same hosted cluster, however we could not use neo4j protocol locally. </P>\n<P>We determined this issue could be resolved two different ways.</P>\n<P>1. A more permanent solution by externally exposing the neo4j address to allow outside traffic in. This involves creating a load balancer to handle this traffic. </P>\n<P>2. Using telepresence to connect directly to the Kuberenetes cluster and navigate through neo4j protocol</P>\n<P>Option 2 has been an easy and successful work around for us</P>","teaser":"","board":{"type":"board","id":"integrations","href":"/boards/integrations","view_href":"https://community.neo4j.com/t5/integrations/bd-p/integrations"},"conversation":{"type":"conversation","id":"60376","href":"/conversations/60376","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/td-p/60376","style":"forum","thread_style":"forum","messages_count":5,"solved":false,"last_post_time":"2022-12-01T14:51:50.042-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"60376","href":"/messages/60376","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/m-p/60376#M1310"},"parent":{"type":"message","id":"60376","href":"/messages/60376","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/m-p/60376#M1310"},"post_time":"2022-12-01T14:51:10.654-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":277},"current_revision":{"type":"revision","id":"62748_1","last_edit_author":{"type":"user","id":"15328","href":"/users/15328","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15328","login":"jp"},"last_edit_time":"2022-12-01T14:51:10.654-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62748'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62748'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62748'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62748'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62748'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62748'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62748'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62748'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62748'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1288.2942947222223,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62746","href":"/messages/62746","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62746#M3848","author":{"type":"user","id":"2010","href":"/users/2010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/2010","login":"ameyasoft"},"subject":"Re: how to search for the most similar array of numbers against a given array.","search_snippet":"I created four nodes with different intensities(i rearranged one value to create four different intensities). \n match (a:Spectrum) where a.intensities is not null\nmatch (b:Spectrum) where id(b) < ...","body":"<P>I created four nodes with different intensities(i rearranged one value to create four different intensities).</P>\n<pre class=\"lia-code-sample language-markup\"><code>match (a:Spectrum) where a.intensities is not null\nmatch (b:Spectrum) where id(b) < id(a) and b.intensities is not null\nwith a.title as S1, a.intensities as a1, b.title as S2, b.intensities as b1 \nwith S1, S2, gds.similarity.cosine(a1, b1) AS cosineSimilarity\n\nwith collect ({Title1: S1, Title2:S2, Similarity: cosineSimilarity }) as Similarities \n\nunwind Similarities as row \n\nreturn row.Title1 as S1, row.Title2 as S2, row.Similarity as cosineSimilarity order by cosineSimilarity desc\n</code></pre>\n<P>Result:<BR /><span class=\"lia-inline-image-display-wrapper lia-image-align-center\" image-alt=\"Screen Shot 2022-12-01 at 12.11.00 PM.png\" style=\"width: 999px;\"><img src=\"https://community.neo4j.com/t5/image/serverpage/image-id/7677iE20966A2E082A19D/image-size/large/is-moderation-mode/true?v=v2&px=999\" role=\"button\" title=\"Screen Shot 2022-12-01 at 12.11.00 PM.png\" alt=\"Screen Shot 2022-12-01 at 12.11.00 PM.png\" /></span></P>\n<P> </P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62341","href":"/conversations/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/td-p/62341","style":"forum","thread_style":"forum","messages_count":10,"solved":false,"last_post_time":"2022-12-02T06:37:35.342-08:00","last_post_time_friendly":"12-02-2022"},"topic":{"type":"message","id":"62341","href":"/messages/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62341#M3814"},"parent":{"type":"message","id":"62341","href":"/messages/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62341#M3814"},"post_time":"2022-12-01T12:15:00.271-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":366},"current_revision":{"type":"revision","id":"62746_1","last_edit_author":{"type":"user","id":"2010","href":"/users/2010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/2010","login":"ameyasoft"},"last_edit_time":"2022-12-01T12:15:00.271-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62746'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62746'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62746'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62746'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62746'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62746'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62746'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62746'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62746'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"safari_15_0_mac","popularity":0.00002151067356699808,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62743","href":"/messages/62743","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/help-with-data-import-and-creating-a-complex-relationship/m-p/62743#M37076","author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"subject":"Re: Help with data import and creating a complex relationship","search_snippet":"I think the data model needs tweaking, but here is something to help you get started. \n load csv with headers from \"file:///Book1.csv\" as row\nmerge(n:Company{company_name:row.company_name,industry:ro...","body":"<P>I think the data model needs tweaking, but here is something to help you get started.</P>\n<pre class=\"lia-code-sample language-markup\"><code>load csv with headers from \"file:///Book1.csv\" as row\nmerge(n:Company{company_name:row.company_name,industry:row.industry,concept_id:row.concept_id})\nmerge(c:YearQuarter{period:row.year_quarter})\nmerge(n)-[:HISTORY{total_hits:row.total_hits}]->(c)\nreturn n, c</code></pre>\n<P><span class=\"lia-inline-image-display-wrapper lia-image-align-left\" image-alt=\"Screen Shot 2022-12-01 at 2.26.44 PM.png\" style=\"width: 400px;\"><img src=\"https://community.neo4j.com/t5/image/serverpage/image-id/7676i6425945933D9FE16/image-size/medium/is-moderation-mode/true?v=v2&px=400\" role=\"button\" title=\"Screen Shot 2022-12-01 at 2.26.44 PM.png\" alt=\"Screen Shot 2022-12-01 at 2.26.44 PM.png\" /></span> </P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62727","href":"/conversations/62727","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/help-with-data-import-and-creating-a-complex-relationship/td-p/62727","style":"forum","thread_style":"forum","messages_count":2,"solved":false,"last_post_time":"2022-12-01T11:27:11.926-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62727","href":"/messages/62727","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/help-with-data-import-and-creating-a-complex-relationship/m-p/62727#M37065"},"parent":{"type":"message","id":"62727","href":"/messages/62727","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/help-with-data-import-and-creating-a-complex-relationship/m-p/62727#M37065"},"post_time":"2022-12-01T11:27:11.926-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":78},"current_revision":{"type":"revision","id":"62743_1","last_edit_author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"last_edit_time":"2022-12-01T11:27:11.926-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62743'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62743'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62743'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62743'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62743'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62743'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62743'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62743'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62743'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"safari_16_0_mac","popularity":-1291.693975,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62741","href":"/messages/62741","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62741#M3846","author":{"type":"user","id":"2010","href":"/users/2010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/2010","login":"ameyasoft"},"subject":"Re: how to search for the most similar array of numbers against a given array.","search_snippet":"Yes, we can do that. I will send you that code. I used that in a different way to calculate the similarities.","body":"<P>Yes, we can do that. I will send you that code. I used that in a different way to calculate the similarities.</P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62341","href":"/conversations/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/td-p/62341","style":"forum","thread_style":"forum","messages_count":10,"solved":false,"last_post_time":"2022-12-02T06:37:35.342-08:00","last_post_time_friendly":"12-02-2022"},"topic":{"type":"message","id":"62341","href":"/messages/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62341#M3814"},"parent":{"type":"message","id":"62341","href":"/messages/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62341#M3814"},"post_time":"2022-12-01T11:11:56.614-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":375},"current_revision":{"type":"revision","id":"62741_1","last_edit_author":{"type":"user","id":"2010","href":"/users/2010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/2010","login":"ameyasoft"},"last_edit_time":"2022-12-01T11:11:56.614-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62741'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62741'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62741'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62741'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62741'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62741'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62741'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62741'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62741'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"safari_15_0_mac","popularity":-1291.9482347222222,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62740","href":"/messages/62740","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/m-p/62740#M3845","author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"subject":"Re: Updating maps doesn't work using APOC library","search_snippet":"I think you do not need to unwind map as ma and I think 'ma' on line 9 should be 'ma1' instead. As such, I think the following would be correct if it worked. \n with apoc.convert.fromJsonMap(\"{'5':1,...","body":"<P>I think you do not need to unwind map as ma and I think 'ma' on line 9 should be 'ma1' instead. As such, I think the following would be correct if it worked. </P>\n<pre class=\"lia-code-sample language-markup\"><code>with apoc.convert.fromJsonMap(\"{'5':1,'10':2}\") as map, apoc.convert.fromJsonMap(\"{'5':2,'4':1,'3':3}\") as map1\nunwind keys(map1) as ma1\ncall apoc.do.when(\n apoc.map.get(map,ma1,'False') = 'False',\n 'return apoc.map.setKey(map,ma1,map1[ma1])',\n 'return apoc.map.setValues(map,[ma1,map1[ma1]+map[ma1]])',\n {map:map, ma1:ma1, map1:map1}\n)\nyield value\nreturn ma1, map1[ma1], value</code></pre>\n<P>It doesn't work because the value of map passed to the 'do.when' method on line 7 is always the original value of map, so it doesn't iteratively update the map. </P>\n<P>You can try this approach. It seems to work:</P>\n<pre class=\"lia-code-sample language-markup\"><code>with apoc.convert.fromJsonMap(\"{'5':1,'10':2}\") as map, apoc.convert.fromJsonMap(\"{'5':2,'4':1,'3':3}\") as map1\nwith [i in keys(map) where not i in keys(map1) | [i,map[i]]] as a,\n[i in keys(map1) where not i in keys(map) | [i,map1[i]]] as b, \n[i in keys(map) where i in keys(map1) | [i,map[i]+map1[i]]] as c\nreturn apoc.map.fromPairs(a+b+c)</code></pre>\n<P>Result:</P>\n<P><span class=\"lia-inline-image-display-wrapper lia-image-align-inline\" image-alt=\"Screen Shot 2022-12-01 at 2.06.24 PM.png\" style=\"width: 200px;\"><img src=\"https://community.neo4j.com/t5/image/serverpage/image-id/7675iD5BDC71F379339B0/image-size/small/is-moderation-mode/true?v=v2&px=200\" role=\"button\" title=\"Screen Shot 2022-12-01 at 2.06.24 PM.png\" alt=\"Screen Shot 2022-12-01 at 2.06.24 PM.png\" /></span> </P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62737","href":"/conversations/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/td-p/62737","style":"forum","thread_style":"forum","messages_count":3,"solved":true,"last_post_time":"2022-12-01T11:29:46.104-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62737","href":"/messages/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/m-p/62737#M3844"},"parent":{"type":"message","id":"62737","href":"/messages/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/m-p/62737#M3844"},"post_time":"2022-12-01T11:07:46.919-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":true,"solution_data":{"type":"solution_data","message_id":"62740","accepter":{"type":"user","id":"15788","href":"/users/15788","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15788","login":"kashu94"},"time":"2022-12-01T11:29:02.000-08:00"},"metrics":{"type":"message_metrics","views":256},"current_revision":{"type":"revision","id":"62740_1","last_edit_author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"last_edit_time":"2022-12-01T11:07:46.919-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62740'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62740'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62740'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62740'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62740'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62740'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62740'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62740'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62740'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"safari_16_0_mac","popularity":0.000021482742606030808,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62734","href":"/messages/62734","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62734#M37072","author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"re: hugepages https://stackoverflow.com/questions/35280757/neo4j-and-hugepages","body":"<P>re: hugepages <A href=\"https://stackoverflow.com/questions/35280757/neo4j-and-hugepages\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://stackoverflow.com/questions/35280757/neo4j-and-hugepages</A></P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"post_time":"2022-12-01T08:48:00.156-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":794},"current_revision":{"type":"revision","id":"62734_1","last_edit_author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"last_edit_time":"2022-12-01T08:48:00.156-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62734'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62734'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62734'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62734'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62734'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62734'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62734'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62734'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62734'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_108","popularity":-1294.3472841666667,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62730","href":"/messages/62730","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62730#M37068","author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"@rbuck-som thanks for getting back to us on the thread. Your question sparked us to have a deeper look into what was going on here, and we found some things very similar to you. Without going into a ...","body":"<P><a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886\">@rbuck-som</a> thanks for getting back to us on the thread. Your question sparked us to have a deeper look into what was going on here, and we found some things very similar to you. Without going into a huge amount of detail or knocking the hardware, Mac NVMe is a big part of the culprit here. When we (in the database) commit - we need to ensure that things are committed; bottom line: fsync call. I have a similar bit of hardware to you (half the ram and half the disk) and this is the best I can get, so the hardware is really getting in the way here. Is it possible for you to take the Mac out of the equation? We've done some testing, and that gets much better results<BR /><BR /></P>\n<pre class=\"lia-code-sample language-markup\"><code> fsync/fdatasync/sync_file_range:\n sync (usec): min=13, max=209, avg=29.08, stdev= 7.99\n sync percentiles (usec):\n | 1.00th=[ 20], 5.00th=[ 21], 10.00th=[ 22], 20.00th=[ 22],\n | 30.00th=[ 26], 40.00th=[ 28], 50.00th=[ 29], 60.00th=[ 30],\n | 70.00th=[ 33], 80.00th=[ 37], 90.00th=[ 38], 95.00th=[ 39],\n | 99.00th=[ 47], 99.50th=[ 75], 99.90th=[ 114], 99.95th=[ 131],\n | 99.99th=[ 161]</code></pre>\n<P> </P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"post_time":"2022-12-01T08:41:29.385-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":802},"current_revision":{"type":"revision","id":"62730_1","last_edit_author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"last_edit_time":"2022-12-01T08:41:29.385-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62730'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62730'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62730'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62730'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62730'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62730'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62730'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62730'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62730'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_108","popularity":-1294.4558566666667,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62724","href":"/messages/62724","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/m-p/62724#M1676","author":{"type":"user","id":"15656","href":"/users/15656","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15656","login":"mindastic"},"subject":"Re: Wrong query in CSV data importer tutorial","search_snippet":"I wasn't referring to the returned values but to the function itself. The one I shared on the screenshot is duplicated on the page and I believe the 2nd time it appears it should be the 2nd one (th...","body":"<P>I wasn't referring to the returned values but to the function itself. <BR />The one I shared on the screenshot is duplicated on the page and I believe the 2nd time it appears it should be the 2nd one (that's the one that worked for me).</P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61508","href":"/conversations/61508","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/td-p/61508","style":"forum","thread_style":"forum","messages_count":4,"solved":false,"last_post_time":"2022-12-05T05:03:42.698-08:00","last_post_time_friendly":"12-05-2022"},"topic":{"type":"message","id":"61508","href":"/messages/61508","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/m-p/61508#M1579"},"parent":{"type":"message","id":"61508","href":"/messages/61508","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/m-p/61508#M1579"},"post_time":"2022-12-01T07:29:28.767-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":137},"current_revision":{"type":"revision","id":"62724_1","last_edit_author":{"type":"user","id":"15656","href":"/users/15656","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15656","login":"mindastic"},"last_edit_time":"2022-12-01T07:29:28.767-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62724'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62724'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62724'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62724'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62724'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62724'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62724'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62724'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62724'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1295.6560733333333,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62723","href":"/messages/62723","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62723#M1675","author":{"type":"user","id":"15587","href":"/users/15587","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15587","login":"amina"},"subject":"Re: queries cross graphs","search_snippet":"Hi, \n Thank you for your answers @steve and @glilienfield \n Finally the following query worked (inspired from your answers <span class=\"lia-unicode-emoji\" title=\":slightly_smiling_face:\">🙂</span> ) : \n \n \n \n //Query cross databases\nCALL{\n use KB.searches\n ...","body":"<P>Hi,</P>\n<P>Thank you for your answers <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/8311\">@steve</a> and <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010\">@glilienfield</a></P>\n<P>Finally the following query worked (inspired from your answers <span class=\"lia-unicode-emoji\" title=\":slightly_smiling_face:\">🙂</span> ) :</P>\n<BLOCKQUOTE><HR />\n<P> </P>\n</BLOCKQUOTE>\n<PRE class=\"c-mrkdwn__pre\" data-stringify-type=\"pre\">//Query cross databases\nCALL{\n use KB.searches\n match(n:Company)\n RETURN n.entityId as id\n LIMIT 200\n}\nWITH id \nCALL{\n WITH id\n use KB.actors\n MATCH(m:Company)-[:ALIAS]->(a:Alias)\n WHERE m.entityId=id\n RETURN m,a\n}\nRETURN m.entityId,a.term </PRE>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"62702","href":"/conversations/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/td-p/62702","style":"forum","thread_style":"forum","messages_count":4,"solved":true,"last_post_time":"2022-12-01T07:25:45.314-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62702#M1660"},"parent":{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62702#M1660"},"post_time":"2022-12-01T07:25:45.314-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":true,"solution_data":{"type":"solution_data","message_id":"62723","accepter":{"type":"user","id":"15587","href":"/users/15587","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15587","login":"amina"},"time":"2022-12-01T07:31:44.000-08:00"},"metrics":{"type":"message_metrics","views":229},"current_revision":{"type":"revision","id":"62723_4","last_edit_author":{"type":"user","id":"15587","href":"/users/15587","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15587","login":"amina"},"last_edit_time":"2022-12-01T07:31:26.644-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62723'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62723'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62723'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62723'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62723'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62723'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62723'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62723'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62723'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_96","popularity":0.000021390918366100923,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62722","href":"/messages/62722","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/m-p/62722#M1674","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Wrong query in CSV data importer tutorial","search_snippet":"Hello @mindastic , \n You can certainly add more values returned from the call, but the minimum values returned for the purpose of checking property types are the three values returned.","body":"<P>Hello <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15656\">@mindastic</a> ,</P>\n<P>You can certainly add more values returned from the call, but the minimum values returned for the purpose of checking property types are the three values returned.</P>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61508","href":"/conversations/61508","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/td-p/61508","style":"forum","thread_style":"forum","messages_count":4,"solved":false,"last_post_time":"2022-12-05T05:03:42.698-08:00","last_post_time_friendly":"12-05-2022"},"topic":{"type":"message","id":"61508","href":"/messages/61508","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/m-p/61508#M1579"},"parent":{"type":"message","id":"61508","href":"/messages/61508","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/wrong-query-in-csv-data-importer-tutorial/m-p/61508#M1579"},"post_time":"2022-12-01T07:20:55.278-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":139},"current_revision":{"type":"revision","id":"62722_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:20:55.278-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62722'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62722'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62722'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62722'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62722'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62722'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62722'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62722'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62722'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1295.7987252777777,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62721","href":"/messages/62721","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/m-p/62721#M1673","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Unable to place t-shirt order","search_snippet":"Hello @Amangarg, \n We have a new form for ordering t-shirts when you pass the Neo4j Certified Professional exam. \n To order your t-shirt, Sign into GraphAcademy (graphacademy.neo4j.com) and then go...","body":"<P>Hello <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15672\">@Amangarg</a>,</P>\n<P>We have a new form for ordering t-shirts when you pass the Neo4j Certified Professional exam.</P>\n<P><SPAN> To order your t-shirt, Sign into GraphAcademy (graphacademy.neo4j.com) and then go to: </SPAN><A class=\"waffle-rich-text-link\" href=\"https://graphacademy.neo4j.com/account/rewards/neo4j-certification/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://graphacademy.neo4j.com/account/rewards/neo4j-certification/</A><SPAN> </SPAN></P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61578","href":"/conversations/61578","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/td-p/61578","style":"forum","thread_style":"forum","messages_count":2,"solved":false,"last_post_time":"2022-12-01T07:17:24.458-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"61578","href":"/messages/61578","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/m-p/61578#M1586"},"parent":{"type":"message","id":"61578","href":"/messages/61578","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/m-p/61578#M1586"},"post_time":"2022-12-01T07:17:24.458-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":76},"current_revision":{"type":"revision","id":"62721_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:17:24.458-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62721'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62721'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62721'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62721'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62721'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62721'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62721'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62721'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62721'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1295.8572941666666,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62720","href":"/messages/62720","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/m-p/62720#M1672","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Unable to place T-Shirt order","search_snippet":"We have a new t-shirt form for folks who have passed the Certified Neo4j Developer exam. \n To order your t-shirt, Sign into GraphAcademy (graphacademy.neo4j.com) and then go to: https://graphacad...","body":"<P>We have a new t-shirt form for folks who have passed the Certified Neo4j Developer exam.</P>\n<P><BR />To order your t-shirt, Sign into GraphAcademy (graphacademy.neo4j.com) and then go to: <BR /><A href=\"https://graphacademy.neo4j.com/account/rewards/neo4j-certification/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://graphacademy.neo4j.com/account/rewards/neo4j-certification/</A></P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61661","href":"/conversations/61661","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/td-p/61661","style":"forum","thread_style":"forum","messages_count":2,"solved":false,"last_post_time":"2022-12-01T07:15:06.593-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"61661","href":"/messages/61661","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/m-p/61661#M1590"},"parent":{"type":"message","id":"61661","href":"/messages/61661","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-place-t-shirt-order/m-p/61661#M1590"},"post_time":"2022-12-01T07:15:06.593-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":83},"current_revision":{"type":"revision","id":"62720_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:15:06.593-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62720'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62720'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62720'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62720'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62720'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62720'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62720'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62720'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62720'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1295.8955966666667,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62719","href":"/messages/62719","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/boltconnectionerror/m-p/62719#M1671","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: BoltConnectionError","search_snippet":"Please provide more context so we can help you.","body":"<P>Please provide more context so we can help you.</P>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61710","href":"/conversations/61710","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/boltconnectionerror/td-p/61710","style":"forum","thread_style":"forum","messages_count":2,"solved":false,"last_post_time":"2022-12-01T07:13:03.311-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"61710","href":"/messages/61710","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/boltconnectionerror/m-p/61710#M1593"},"parent":{"type":"message","id":"61710","href":"/messages/61710","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/boltconnectionerror/m-p/61710#M1593"},"post_time":"2022-12-01T07:13:03.311-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":88},"current_revision":{"type":"revision","id":"62719_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:13:03.311-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62719'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62719'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62719'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62719'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62719'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62719'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62719'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62719'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62719'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1295.929848611111,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62717","href":"/messages/62717","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/data-processing-graph/m-p/62717#M1669","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: data processing graph","search_snippet":"For starters before you populate your graph, I strongly suggest you take the modeling fundamentals course. https://graphacademy.neo4j.com/courses/modeling-fundamentals/","body":"<P>For starters before you populate your graph, I strongly suggest you take the modeling fundamentals course.<BR /><A href=\"https://graphacademy.neo4j.com/courses/modeling-fundamentals/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://graphacademy.neo4j.com/courses/modeling-fundamentals/</A><BR /><BR /></P>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61857","href":"/conversations/61857","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/data-processing-graph/td-p/61857","style":"forum","thread_style":"forum","messages_count":2,"solved":false,"last_post_time":"2022-12-01T07:11:18.253-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"61857","href":"/messages/61857","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/data-processing-graph/m-p/61857#M1604"},"parent":{"type":"message","id":"61857","href":"/messages/61857","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/data-processing-graph/m-p/61857#M1604"},"post_time":"2022-12-01T07:11:18.253-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":76},"current_revision":{"type":"revision","id":"62717_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:11:18.253-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62717'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62717'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62717'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62717'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62717'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62717'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62717'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62717'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62717'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1295.959046111111,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62715","href":"/messages/62715","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-cypher-fundamentals-not-working/m-p/62715#M1667","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Sandbox in Cypher Fundamentals not working","search_snippet":"One solution for this course is to terminate the Movies project in the sandbox.neo4j.com site. \n Then re-enter the course. It should automatically recreate the sandbox and you can resume where you le...","body":"<P>One solution for this course is to terminate the Movies project in the sandbox.neo4j.com site.</P>\n<P>Then re-enter the course. It should automatically recreate the sandbox and you can resume where you left off.</P>\n<P>Keep in mind that it takes a few minutes to create and populate the sandbox for the course. </P>\n<P>Queries will only execute if there is the $neo4j prompt in the edit pane.</P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61893","href":"/conversations/61893","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-cypher-fundamentals-not-working/td-p/61893","style":"forum","thread_style":"forum","messages_count":3,"solved":false,"last_post_time":"2022-12-13T20:14:24.077-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"61893","href":"/messages/61893","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-cypher-fundamentals-not-working/m-p/61893#M1607"},"parent":{"type":"message","id":"61893","href":"/messages/61893","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-cypher-fundamentals-not-working/m-p/61893#M1607"},"post_time":"2022-12-01T07:08:33.721-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":237},"current_revision":{"type":"revision","id":"62715_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:08:33.721-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62715'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62715'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62715'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62715'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62715'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62715'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62715'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62715'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62715'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1296.0047644444444,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62714","href":"/messages/62714","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-submit-t-shirt-order-form/m-p/62714#M1666","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Unable to submit t-shirt order form","search_snippet":"Hello @darciosavilela \n We have a new form for ordering Neo4j Certified Developer t-shirts. Sign into GraphAcademy (graphacademy.neo4j.com) and then go to: https://graphacademy.neo4j.com/acco...","body":"<P>Hello <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15570\">@darciosavilela</a> </P>\n<P><BR />We have a new form for ordering Neo4j Certified Developer t-shirts.<BR /><BR />Sign into GraphAcademy (graphacademy.neo4j.com) and then go to: <BR /><A href=\"https://graphacademy.neo4j.com/account/rewards/neo4j-certification/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://graphacademy.neo4j.com/account/rewards/neo4j-certification/</A><BR /><BR />Elaine</P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"61986","href":"/conversations/61986","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-submit-t-shirt-order-form/td-p/61986","style":"forum","thread_style":"forum","messages_count":11,"solved":false,"last_post_time":"2022-12-29T07:04:00.351-08:00","last_post_time_friendly":"12-29-2022"},"topic":{"type":"message","id":"61986","href":"/messages/61986","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-submit-t-shirt-order-form/m-p/61986#M1615"},"parent":{"type":"message","id":"61986","href":"/messages/61986","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/unable-to-submit-t-shirt-order-form/m-p/61986#M1615"},"post_time":"2022-12-01T07:04:58.975-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":640},"current_revision":{"type":"revision","id":"62714_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:04:58.975-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62714'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62714'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62714'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62714'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62714'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62714'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62714'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62714'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62714'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1296.0644252777777,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62713","href":"/messages/62713","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62713#M37064","author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"@rbuck-som One question I had for you based on some internal testing we've done: is a Mac involved in this test in any way?","body":"<P><a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886\">@rbuck-som</a> One question I had for you based on some internal testing we've done: is a Mac involved in this test in any way?</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"post_time":"2022-12-01T06:46:25.574-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":814},"current_revision":{"type":"revision","id":"62713_1","last_edit_author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"last_edit_time":"2022-12-01T06:46:25.574-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62713'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62713'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62713'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62713'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62713'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62713'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62713'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62713'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62713'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_108","popularity":-1296.3737077777778,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62712","href":"/messages/62712","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/5-x-fulltext-index-time-is-much-longer-than-4-x-fulltext-index/m-p/62712#M37063","author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"subject":"Re: 5.x fulltext index time is much longer than 4.x fulltext index time.","search_snippet":"@Dongho Thanks for posting this - just to confirm, I believe you're talking about the time it takes to create the index?","body":"<P><a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15507\">@Dongho</a> Thanks for posting this - just to confirm, I believe you're talking about the time it takes to create the index?</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62621","href":"/conversations/62621","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/5-x-fulltext-index-time-is-much-longer-than-4-x-fulltext-index/td-p/62621","style":"forum","thread_style":"forum","messages_count":3,"solved":false,"last_post_time":"2022-12-01T22:04:47.193-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62621","href":"/messages/62621","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/5-x-fulltext-index-time-is-much-longer-than-4-x-fulltext-index/m-p/62621#M37029"},"parent":{"type":"message","id":"62621","href":"/messages/62621","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/5-x-fulltext-index-time-is-much-longer-than-4-x-fulltext-index/m-p/62621#M37029"},"post_time":"2022-12-01T06:44:22.897-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":213},"current_revision":{"type":"revision","id":"62712_1","last_edit_author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"last_edit_time":"2022-12-01T06:44:22.897-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62712'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62712'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62712'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62712'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62712'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62712'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62712'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62712'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62712'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_108","popularity":-1296.4077930555557,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62711","href":"/messages/62711","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62711#M1665","author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"subject":"Re: queries cross graphs","search_snippet":"Hi @amina - given that you used the word \"composite\" database - sounds like you're already using v5? At any rate, I reached out internally, and got this: They need to wrap the parts that access...","body":"<P>Hi <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15587\">@amina</a> - given that you used the word \"composite\" database - sounds like you're already using v5? At any rate, I reached out internally, and got this:<BR /><BR /><BR /><SPAN>They need to wrap the parts that access the dbs as subqueries. A couple of doc links and an example:</SPAN></P>\n<P><SPAN><A class=\"c-link\" tabindex=\"-1\" href=\"https://neo4j.com/docs/operations-manual/current/composite-databases/queries/\" target=\"_blank\" rel=\"noopener noreferrer nofollow\" data-stringify-link=\"https://neo4j.com/docs/operations-manual/current/composite-databases/queries/\" data-sk=\"tooltip_parent\" data-remove-tab-index=\"true\">https://neo4j.com/docs/operations-manual/current/composite-databases/queries/</A><BR /><A class=\"c-link\" tabindex=\"-1\" href=\"https://neo4j.com/docs/cypher-manual/5/clauses/use/#query-use-syntax-composite\" target=\"_blank\" rel=\"noopener noreferrer nofollow\" data-stringify-link=\"https://neo4j.com/docs/cypher-manual/5/clauses/use/#query-use-syntax-composite\" data-sk=\"tooltip_parent\" data-remove-tab-index=\"true\">https://neo4j.com/docs/cypher-manual/5/clauses/use/#query-use-syntax-composite</A></SPAN></P>\n<P><SPAN><A class=\"c-link\" tabindex=\"-1\" href=\"https://neo4j.com/docs/operations-manual/current/tutorial/tutorial-composite-database/\" target=\"_blank\" rel=\"noopener noreferrer nofollow\" data-stringify-link=\"https://neo4j.com/docs/operations-manual/current/tutorial/tutorial-composite-database/\" data-sk=\"tooltip_parent\" data-remove-tab-index=\"true\">https://neo4j.com/docs/operations-manual/current/tutorial/tutorial-composite-database/</A></SPAN></P>\n<pre class=\"lia-code-sample language-cypher\"><code>CALL {\n USE KB.searches\n MATCH(n:Company) WHERE ...\n WITH n.entityId as companyId\n RETURN companyId\n}\nCALL {\n USE KB.actors\n MATCH(n:Company)-[:ALIAS]->(a:Alias)\n WHERE n.entityId=companyId\n RETURN a\n}\nRETURN companyId, a.term</code></pre>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"62702","href":"/conversations/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/td-p/62702","style":"forum","thread_style":"forum","messages_count":4,"solved":true,"last_post_time":"2022-12-01T07:25:45.314-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62702#M1660"},"parent":{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62702#M1660"},"post_time":"2022-12-01T06:38:13.260-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":231},"current_revision":{"type":"revision","id":"62711_1","last_edit_author":{"type":"user","id":"14818","href":"/users/14818","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14818","login":"steggy"},"last_edit_time":"2022-12-01T06:38:13.260-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62711'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62711'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62711'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62711'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62711'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62711'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62711'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62711'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62711'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_108","popularity":0.000042742685890121593,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62708","href":"/messages/62708","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62708#M1662","author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"subject":"Re: queries cross graphs","search_snippet":"Look into neo4j fabric. It’s only available with enterprise edition. I also looks like neo4j 5.0 improved on its usage. \n https://www.markhneedham.com/blog/2020/02/03/neo4j-cross-database-querying-f...","body":"<P>Look into neo4j fabric. It’s only available with enterprise edition. I also looks like neo4j 5.0 improved on its usage. </P>\n<P><A href=\"https://www.markhneedham.com/blog/2020/02/03/neo4j-cross-database-querying-fabric/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://www.markhneedham.com/blog/2020/02/03/neo4j-cross-database-querying-fabric/</A></P>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"62702","href":"/conversations/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/td-p/62702","style":"forum","thread_style":"forum","messages_count":4,"solved":true,"last_post_time":"2022-12-01T07:25:45.314-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62702#M1660"},"parent":{"type":"message","id":"62702","href":"/messages/62702","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/queries-cross-graphs/m-p/62702#M1660"},"post_time":"2022-12-01T04:02:09.977-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":242},"current_revision":{"type":"revision","id":"62708_1","last_edit_author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"last_edit_time":"2022-12-01T04:02:09.977-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62708'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62708'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62708'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62708'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62708'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62708'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62708'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62708'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62708'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"apple_iphone_ver16_1","popularity":-1299.1114019444444,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62706","href":"/messages/62706","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62706#M1661","author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"subject":"Re: Sandbox in graphacademy apparently not working !","search_snippet":"Remark: I found out that a sandbox is automatically being created for me and shown (including the credentials) under https://graphacademy.neo4j.com/courses/cypher-fundamentals/?ref=certification vis...","body":"<P>Remark: I found out that a sandbox is automatically being created for me and shown (including the credentials) under <A href=\"https://graphacademy.neo4j.com/courses/cypher-fundamentals/?ref=certification\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">https://graphacademy.neo4j.com/courses/cypher-fundamentals/?ref=certification</A><BR />visiting this sanbox directly (for me this is the link <A href=\"https://73a3e2901c3d869f4b0620578616b305.neo4jsandbox.com/browser/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">https://73a3e2901c3d869f4b0620578616b305.neo4jsandbox.com/browser/</A>) results in a similar behaviour (cf. attached screenshot)</P>\n<P><span class=\"lia-inline-image-display-wrapper lia-image-align-inline\" image-alt=\"Screenshot 2022-12-01 at 12.49.13.png\" style=\"width: 400px;\"><img src=\"https://community.neo4j.com/t5/image/serverpage/image-id/7674i815923DCB17203F6/image-size/medium/is-moderation-mode/true?v=v2&px=400\" role=\"button\" title=\"Screenshot 2022-12-01 at 12.49.13.png\" alt=\"Screenshot 2022-12-01 at 12.49.13.png\" /></span></P>\n<P> </P>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"59904","href":"/conversations/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/td-p/59904","style":"forum","thread_style":"forum","messages_count":28,"solved":true,"last_post_time":"2022-12-13T20:13:54.047-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"parent":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"post_time":"2022-12-01T03:43:47.369-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":1598},"current_revision":{"type":"revision","id":"62706_2","last_edit_author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"last_edit_time":"2022-12-01T03:49:56.986-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62706'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62706'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62706'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62706'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62706'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62706'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62706'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62706'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62706'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1299.4176863888888,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62700","href":"/messages/62700","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62700#M37060","author":{"type":"user","id":"10725","href":"/users/10725","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/10725","login":"czp"},"subject":"Re: How to optimize the performance of scanning edge data","search_snippet":"I tried relationship index, but version 3.5 doesn't support it.","body":"<P class=\"src grammarSection highlight\" data-group=\"1-1\">I tried relationship index, but version 3.5 doesn't support it.</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62530","href":"/conversations/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/td-p/62530","style":"forum","thread_style":"forum","messages_count":7,"solved":false,"last_post_time":"2022-12-01T03:41:12.571-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62530","href":"/messages/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62530#M36958"},"parent":{"type":"message","id":"62530","href":"/messages/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62530#M36958"},"post_time":"2022-12-01T02:46:26.945-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":242},"current_revision":{"type":"revision","id":"62700_1","last_edit_author":{"type":"user","id":"10725","href":"/users/10725","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/10725","login":"czp"},"last_edit_time":"2022-12-01T02:46:26.945-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62700'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62700'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62700'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62700'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62700'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62700'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62700'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62700'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62700'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_106","popularity":-1300.37339,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62697","href":"/messages/62697","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62697#M37058","author":{"type":"user","id":"14147","href":"/users/14147","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14147","login":"florent_biville"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"Hello, \n Thanks for raising concerns (Go driver maintainer here). \n I spotted a couple of issues with your program: \n \n you are stacking up defer calls when closing the session. Each session will onl...","body":"<P>Hello,</P>\n<P>Thanks for raising concerns (Go driver maintainer here).</P>\n<P>I spotted a couple of issues with your program:</P>\n<UL>\n<LI>you are stacking up defer calls when closing the session. Each session will only be closed at program completion, not at the end of each iteration</LI>\n<LI>creating a session without any configured database name (see SessionConfig#DatabaseName) means a home database resolution will occur every time and that involves a network roundtrip. The documentation has recently been updated to document this. I would advise to create the session only once and/or to explicitly set the database name.</LI>\n<LI>you are not consuming the results of the autocommit transaction, I would advise here to not ignore the result and call Consume on it, so the server does not keep active autocommit transactions needlessly.</LI>\n</UL>\n<P>That should improve the situation.</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"post_time":"2022-12-01T02:38:11.097-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":826},"current_revision":{"type":"revision","id":"62697_3","last_edit_author":{"type":"user","id":"14147","href":"/users/14147","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14147","login":"florent_biville"},"last_edit_time":"2022-12-01T02:55:08.625-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62697'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62697'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62697'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62697'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62697'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62697'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62697'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62697'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62697'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1300.5111372222223,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62696","href":"/messages/62696","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62696#M1659","author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"subject":"Re: Sandbox in graphacademy apparently not working !","search_snippet":"@elaine_rosenber I am still stuck in that state, even after logging out several times (also in the sandbox page) as suggested in the answer above. I noticed that there is a loop of GET requests timi...","body":"<P><a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937\">@elaine_rosenber</a> I am still stuck in that state, even after logging out several times (also in the sandbox page) as suggested in the answer above.<BR />I noticed that there is a loop of GET requests timing out (cf. attached screenshot).<BR />This also applies to the sandbox page, where the pattern is the same.<BR /><span class=\"lia-inline-image-display-wrapper lia-image-align-inline\" image-alt=\"Screenshot 2022-12-01 at 10.39.25.png\" style=\"width: 400px;\"><img src=\"https://community.neo4j.com/t5/image/serverpage/image-id/7671i0397AC478614C4F4/image-size/medium/is-moderation-mode/true?v=v2&px=400\" role=\"button\" title=\"Screenshot 2022-12-01 at 10.39.25.png\" alt=\"Screenshot 2022-12-01 at 10.39.25.png\" /></span></P>\n<P> </P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"59904","href":"/conversations/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/td-p/59904","style":"forum","thread_style":"forum","messages_count":28,"solved":true,"last_post_time":"2022-12-13T20:13:54.047-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"parent":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"post_time":"2022-12-01T01:44:28.538-08:00","post_time_friendly":"12-01-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":1611},"current_revision":{"type":"revision","id":"62696_2","last_edit_author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"last_edit_time":"2022-12-01T01:54:34.518-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62696'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62696'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62696'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62696'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62696'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62696'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62696'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62696'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62696'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1301.4062972222223,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62692","href":"/messages/62692","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/cannot-connect-to-neo4j-aura-database-with-node-server-in-docker/m-p/62692#M37056","author":{"type":"user","id":"15442","href":"/users/15442","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15442","login":"DevDan"},"subject":"Re: Cannot connect to Neo4j Aura database with Node server in docker container","search_snippet":"Didn't see a delete post option. My issue was the aura instance had stopped, so of course I couldn't connect.","body":"<P>Didn't see a delete post option. My issue was the aura instance had stopped, so of course I couldn't connect. </P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62691","href":"/conversations/62691","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/cannot-connect-to-neo4j-aura-database-with-node-server-in-docker/td-p/62691","style":"forum","thread_style":"forum","messages_count":2,"solved":true,"last_post_time":"2022-11-30T21:49:43.423-08:00","last_post_time_friendly":"11-30-2022"},"topic":{"type":"message","id":"62691","href":"/messages/62691","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/cannot-connect-to-neo4j-aura-database-with-node-server-in-docker/m-p/62691#M37055"},"parent":{"type":"message","id":"62691","href":"/messages/62691","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/cannot-connect-to-neo4j-aura-database-with-node-server-in-docker/m-p/62691#M37055"},"post_time":"2022-11-30T21:49:43.423-08:00","post_time_friendly":"11-30-2022","depth":1,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":true,"solution_data":{"type":"solution_data","message_id":"62692","accepter":{"type":"user","id":"15442","href":"/users/15442","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15442","login":"DevDan"},"time":"2022-11-30T21:49:48.000-08:00"},"metrics":{"type":"message_metrics","views":157},"current_revision":{"type":"revision","id":"62692_1","last_edit_author":{"type":"user","id":"15442","href":"/users/15442","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15442","login":"DevDan"},"last_edit_time":"2022-11-30T21:49:43.423-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62692'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62692'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62692'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62692'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62692'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62692'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62692'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62692'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62692'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1305.3188522222222,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62749","href":"/messages/62749","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/m-p/62749#M1353","author":{"type":"user","id":"15328","href":"/users/15328","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15328","login":"jp"},"subject":"Re: Neo4j Protocol Connection Issue","search_snippet":"@Franbr31","body":"<P><a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15151\">@Franbr31</a> </P>","teaser":"","board":{"type":"board","id":"integrations","href":"/boards/integrations","view_href":"https://community.neo4j.com/t5/integrations/bd-p/integrations"},"conversation":{"type":"conversation","id":"60376","href":"/conversations/60376","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/td-p/60376","style":"forum","thread_style":"forum","messages_count":5,"solved":false,"last_post_time":"2022-12-01T14:51:50.042-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"60376","href":"/messages/60376","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/m-p/60376#M1310"},"parent":{"type":"message","id":"62748","href":"/messages/62748","view_href":"https://community.neo4j.com/t5/integrations/neo4j-protocol-connection-issue/m-p/62748#M1352"},"post_time":"2022-12-01T14:51:50.042-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":276},"current_revision":{"type":"revision","id":"62749_1","last_edit_author":{"type":"user","id":"15328","href":"/users/15328","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15328","login":"jp"},"last_edit_time":"2022-12-01T14:51:50.042-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62749'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62749'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62749'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62749'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62749'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62749'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62749'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62749'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62749'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1288.283348888889,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62744","href":"/messages/62744","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/m-p/62744#M3847","author":{"type":"user","id":"15788","href":"/users/15788","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15788","login":"kashu94"},"subject":"Re: Updating maps doesn't work using APOC library","search_snippet":"Thank you, it worked in a jiffy! <span class=\"lia-unicode-emoji\" title=\":slightly_smiling_face:\">🙂</span>","body":"<P>Thank you, it worked in a jiffy! <span class=\"lia-unicode-emoji\" title=\":slightly_smiling_face:\">🙂</span></P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62737","href":"/conversations/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/td-p/62737","style":"forum","thread_style":"forum","messages_count":3,"solved":true,"last_post_time":"2022-12-01T11:29:46.104-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62737","href":"/messages/62737","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/m-p/62737#M3844"},"parent":{"type":"message","id":"62740","href":"/messages/62740","view_href":"https://community.neo4j.com/t5/general-discussions/updating-maps-doesn-t-work-using-apoc-library/m-p/62740#M3845"},"post_time":"2022-12-01T11:29:46.104-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":252},"current_revision":{"type":"revision","id":"62744_1","last_edit_author":{"type":"user","id":"15788","href":"/users/15788","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15788","login":"kashu94"},"last_edit_time":"2022-12-01T11:29:46.104-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62744'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62744'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62744'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62744'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62744'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62744'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62744'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62744'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62744'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":0.00002149187155564568,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62733","href":"/messages/62733","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62733#M37071","author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"Florent, \n It would be really nice if the driver project presented a decent coroutine-based example, that illustrates a high insert rate, follows the best practices, for both single record insert and...","body":"<P>Florent,</P>\n<P>It would be really nice if the driver project presented a decent coroutine-based example, that illustrates a high insert rate, follows the best practices, for both single record insert and batched insert. If you know of a complete example, I can rewrite mine to follow. To save time.</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62697","href":"/messages/62697","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62697#M37058"},"post_time":"2022-12-01T08:47:03.342-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":798},"current_revision":{"type":"revision","id":"62733_1","last_edit_author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"last_edit_time":"2022-12-01T08:47:03.342-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62733'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62733'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62733'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62733'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62733'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62733'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62733'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62733'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62733'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1294.3630722222222,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62732","href":"/messages/62732","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62732#M37070","author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"Yes, I recall this conversation during my NuoDB days, as they supported multiple kernel instruction types for commit. You might all the kernel instructions others do, that's ok. Anyways, I can test o...","body":"<P>Yes, I recall this conversation during my NuoDB days, as they supported multiple kernel instruction types for commit. You might all the kernel instructions others do, that's ok. Anyways, I can test on a Linux machine in AWS. Also, most databases prohibit use of transparent huge pages, do you require that turned off too? Thank you!!!</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62730","href":"/messages/62730","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62730#M37068"},"post_time":"2022-12-01T08:44:07.069-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":800},"current_revision":{"type":"revision","id":"62732_2","last_edit_author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"last_edit_time":"2022-12-01T08:44:59.684-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62732'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62732'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62732'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62732'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62732'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62732'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62732'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62732'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62732'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1294.4120447222222,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62731","href":"/messages/62731","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62731#M37069","author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"Thanks, will make these changes. Do you have a best-practice (reference) example that illustrates this?","body":"<P>Thanks, will make these changes. Do you have a best-practice (reference) example that illustrates this?</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62697","href":"/messages/62697","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62697#M37058"},"post_time":"2022-12-01T08:41:41.947-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":802},"current_revision":{"type":"revision","id":"62731_1","last_edit_author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"last_edit_time":"2022-12-01T08:41:41.947-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62731'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62731'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62731'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62731'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62731'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62731'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62731'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62731'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62731'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1294.4523625,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62728","href":"/messages/62728","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62728#M37066","author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"Yes, I have a pretty high end MacBook Pro, with 2 TB NvME, and 64 GB RAM. I'm running on through the loopback adapter, but have 10 Gbe locally. When I run batched mode with Python I get \"okay\" perfor...","body":"<P>Yes, I have a pretty high end MacBook Pro, with 2 TB NvME, and 64 GB RAM. I'm running on through the loopback adapter, but have 10 Gbe locally. When I run batched mode with Python I get \"okay\" performance upwards of 1000/s. But having worked in the database industry for 24 years, I am surprised tbh how slow Neo4j is, folks shouldn't need to resort to batching, only as a last resort; we were getting upwards of 10,000 TPS using ObjectStore over the course of a one weekend consulting gig at a Thompson Financial head-to-head against Oracle (creamed their butts), back in 1998 using a single server, and using relatively (to these days) crappy hardware (64-bit Sparc) circa 1998, so Neo on this fancy hardware we have these days SHOULD BE blazingly faster than that.</P>\n<P>The golang driver... Well that's another story entirely: I rewrote to use channels and coroutines having 1 producer, and 3 consumers (each with their own session/transactions); and at best I am upwards of 100 tps. Again, at least off by 2-3 orders of magnitude from what I would consider to be reasonable.</P>\n<P>I really would love to see tps numbers, single record inserts, per thread upwards of 1000 tps. Then from there I can scale out across many threads... But I am unsure how well Neo would handle lots of concurrency (Again, I know SQL databases can safely handle upwards of 1k concurrent connections at scale w/o skipping a beat). I've read online that Neo is not quite so great with lots of concurrency.</P>\n<P>I am trying to also assess the usefulness of front-ending this with Spark or Kafka, to stream inputs faster. One thing I am unsure of also is how well this will hold up on the READ side of the house. If this is used in an operational environment with heavy concurrent reads, will Neo fall over from all the load? Will it slow down at scale like AWS Neptune does?</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62713","href":"/messages/62713","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62713#M37064"},"post_time":"2022-12-01T08:33:37.329-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":807},"current_revision":{"type":"revision","id":"62728_1","last_edit_author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"last_edit_time":"2022-12-01T08:33:37.329-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62728'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62728'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62728'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62728'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62728'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62728'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62728'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62728'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62728'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1294.5869969444445,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62726","href":"/messages/62726","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62726#M3843","author":{"type":"user","id":"15906","href":"/users/15906","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15906","login":"tony156"},"subject":"Re: how to search for the most similar array of numbers against a given array.","search_snippet":"Hi @ameyasoft . Thanks for your answer. Actually we don't need to truncate the zeroes and just apply cosine similarity to the arrays. Also, is there a way I can compare a node one by one with every...","body":"<P>Hi <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/2010\">@ameyasoft</a> . Thanks for your answer. Actually we don't need to truncate the zeroes and just apply cosine similarity to the arrays. <BR />Also, is there a way I can compare a node one by one with every node in the database to find the node with the highest similarity score? Is there a way to write procedure in neo4j for that?</P>","teaser":"","board":{"type":"board","id":"general_discussions","href":"/boards/general_discussions","view_href":"https://community.neo4j.com/t5/general-discussions/bd-p/general_discussions"},"conversation":{"type":"conversation","id":"62341","href":"/conversations/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/td-p/62341","style":"forum","thread_style":"forum","messages_count":10,"solved":false,"last_post_time":"2022-12-02T06:37:35.342-08:00","last_post_time_friendly":"12-02-2022"},"topic":{"type":"message","id":"62341","href":"/messages/62341","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62341#M3814"},"parent":{"type":"message","id":"62688","href":"/messages/62688","view_href":"https://community.neo4j.com/t5/general-discussions/how-to-search-for-the-most-similar-array-of-numbers-against-a/m-p/62688#M3842"},"post_time":"2022-12-01T08:00:32.474-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":377},"current_revision":{"type":"revision","id":"62726_1","last_edit_author":{"type":"user","id":"15906","href":"/users/15906","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15906","login":"tony156"},"last_edit_time":"2022-12-01T08:00:32.474-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62726'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62726'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62726'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62726'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62726'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62726'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62726'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62726'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62726'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1295.138358611111,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62725","href":"/messages/62725","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62725#M1677","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Sandbox in graphacademy apparently not working !","search_snippet":"Can you try chrome to see if the results are different? \n Elaine","body":"<P>Can you try chrome to see if the results are different?</P>\n<P>Elaine</P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"59904","href":"/conversations/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/td-p/59904","style":"forum","thread_style":"forum","messages_count":28,"solved":true,"last_post_time":"2022-12-13T20:13:54.047-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"parent":{"type":"message","id":"62706","href":"/messages/62706","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62706#M1661"},"post_time":"2022-12-01T07:29:56.415-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":1577},"current_revision":{"type":"revision","id":"62725_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T07:29:56.415-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62725'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62725'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62725'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62725'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62725'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62725'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62725'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62725'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62725'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1295.6483844444444,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62710","href":"/messages/62710","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62710#M1664","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Sandbox in graphacademy apparently not working !","search_snippet":"You might want to use Chrome as your Web browser to see if you still have the issue.","body":"<P>You might want to use Chrome as your Web browser to see if you still have the issue.</P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"59904","href":"/conversations/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/td-p/59904","style":"forum","thread_style":"forum","messages_count":28,"solved":true,"last_post_time":"2022-12-13T20:13:54.047-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"parent":{"type":"message","id":"62706","href":"/messages/62706","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62706#M1661"},"post_time":"2022-12-01T04:41:11.701-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":1590},"current_revision":{"type":"revision","id":"62710_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T04:41:11.701-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62710'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62710'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62710'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62710'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62710'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62710'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62710'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62710'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62710'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1298.4609127777778,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62709","href":"/messages/62709","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62709#M1663","author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"subject":"Re: Sandbox in graphacademy apparently not working !","search_snippet":"Hello @jannik, \n There is feature in Firefox called Enhanced Tracking Protection that blocks sites. Can you temporarily disable it? \n Elaine","body":"<P>Hello <a href=\"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005\">@jannik</a>,</P>\n<P><SPAN>There is feature in Firefox called Enhanced Tracking Protection that blocks sites. Can you temporarily disable it?</SPAN></P>\n<P><SPAN>Elaine</SPAN></P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"59904","href":"/conversations/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/td-p/59904","style":"forum","thread_style":"forum","messages_count":28,"solved":true,"last_post_time":"2022-12-13T20:13:54.047-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"parent":{"type":"message","id":"62696","href":"/messages/62696","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62696#M1659"},"post_time":"2022-12-01T04:38:44.769-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":1592},"current_revision":{"type":"revision","id":"62709_1","last_edit_author":{"type":"user","id":"1937","href":"/users/1937","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/1937","login":"elaine_rosenber"},"last_edit_time":"2022-12-01T04:38:44.769-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62709'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62709'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62709'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62709'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62709'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62709'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62709'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62709'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62709'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1298.5017316666667,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62701","href":"/messages/62701","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62701#M37061","author":{"type":"user","id":"10725","href":"/users/10725","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/10725","login":"czp"},"subject":"Re: How to optimize the performance of scanning edge data","search_snippet":"https://neo4j.com/developer-blog/neo4j-4-3-blog-series-relationship-indexes/","body":"<P><A href=\"https://neo4j.com/developer-blog/neo4j-4-3-blog-series-relationship-indexes/\" target=\"_blank\" rel=\"nofollow noopener noreferrer\">https://neo4j.com/developer-blog/neo4j-4-3-blog-series-relationship-indexes/</A></P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62530","href":"/conversations/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/td-p/62530","style":"forum","thread_style":"forum","messages_count":7,"solved":false,"last_post_time":"2022-12-01T03:41:12.571-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62530","href":"/messages/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62530#M36958"},"parent":{"type":"message","id":"62700","href":"/messages/62700","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62700#M37060"},"post_time":"2022-12-01T02:47:19.787-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":244},"current_revision":{"type":"revision","id":"62701_1","last_edit_author":{"type":"user","id":"10725","href":"/users/10725","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/10725","login":"czp"},"last_edit_time":"2022-12-01T02:47:19.787-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62701'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62701'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62701'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62701'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62701'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62701'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62701'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62701'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62701'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_106","popularity":-1300.3587072222222,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62698","href":"/messages/62698","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62698#M37059","author":{"type":"user","id":"10725","href":"/users/10725","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/10725","login":"czp"},"subject":"Re: How to optimize the performance of scanning edge data","search_snippet":"I'm using a cypher-shell. Is there any other way to optimize it?","body":"<P class=\"src grammarSection\" data-group=\"1-1\">I'm using a cypher-shell. Is there any other way to optimize it?</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62530","href":"/conversations/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/td-p/62530","style":"forum","thread_style":"forum","messages_count":7,"solved":false,"last_post_time":"2022-12-01T03:41:12.571-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62530","href":"/messages/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62530#M36958"},"parent":{"type":"message","id":"62541","href":"/messages/62541","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62541#M36967"},"post_time":"2022-12-01T02:44:03.212-08:00","post_time_friendly":"12-01-2022","depth":2,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":243},"current_revision":{"type":"revision","id":"62698_1","last_edit_author":{"type":"user","id":"10725","href":"/users/10725","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/10725","login":"czp"},"last_edit_time":"2022-12-01T02:44:03.212-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62698'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62698'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62698'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62698'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62698'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62698'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62698'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62698'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62698'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_106","popularity":-1300.4133227777777,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62738","href":"/messages/62738","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62738#M37075","author":{"type":"user","id":"14147","href":"/users/14147","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14147","login":"florent_biville"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"I will try to come up with something and keep you posted.","body":"<P>I will try to come up with something and keep you posted.</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62733","href":"/messages/62733","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62733#M37071"},"post_time":"2022-12-01T10:46:59.846-08:00","post_time_friendly":"12-01-2022","depth":3,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":779},"current_revision":{"type":"revision","id":"62738_1","last_edit_author":{"type":"user","id":"14147","href":"/users/14147","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/14147","login":"florent_biville"},"last_edit_time":"2022-12-01T10:46:59.846-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62738'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62738'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62738'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62738'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62738'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62738'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62738'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62738'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62738'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1292.364019722222,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62729","href":"/messages/62729","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62729#M37067","author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"subject":"Re: Golang Driver | Neo4j Performance Issue","search_snippet":"As a point of comparison, we have been running SiteWise (AWS Neptune internals as you may be aware) and streaming real time metrics into it from NOAA (weather) ground-based stations, and from buildin...","body":"<P>As a point of comparison, we have been running SiteWise (AWS Neptune internals as you may be aware) and streaming real time metrics into it from NOAA (weather) ground-based stations, and from building sensors (internal air-quality), and we're finding that SiteWise at scale, over longer time scales, falls over. Too much data. We're having to split the knowledge graph from the time-series data. So the graph does not have to handle rates of 100K/s upwards of 1M/s inserts, but it does have to support merge very efficiently (sync models and assets), support in excess of 10M nodes and relationships, support high concurrent reads and writes (95/5 mix).</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62293","href":"/conversations/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/td-p/62293","style":"forum","thread_style":"forum","messages_count":18,"solved":true,"last_post_time":"2022-12-01T10:46:59.846-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62293","href":"/messages/62293","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62293#M36810"},"parent":{"type":"message","id":"62728","href":"/messages/62728","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/golang-driver-neo4j-performance-issue/m-p/62728#M37066"},"post_time":"2022-12-01T08:39:21.700-08:00","post_time_friendly":"12-01-2022","depth":3,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":804},"current_revision":{"type":"revision","id":"62729_1","last_edit_author":{"type":"user","id":"15886","href":"/users/15886","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15886","login":"rbuck-som"},"last_edit_time":"2022-12-01T08:39:21.700-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62729'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62729'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62729'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62729'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62729'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62729'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62729'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62729'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62729'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1294.4913333333334,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62718","href":"/messages/62718","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62718#M1670","author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"subject":"Re: Sandbox in graphacademy apparently not working !","search_snippet":"Thanks Elaine for the response. Unfortunatelly also using Chrome instead of Firefox (also without any ad blockers etc.) does not change anything.","body":"<P>Thanks Elaine for the response. Unfortunatelly also using Chrome instead of Firefox (also without any ad blockers etc.) does not change anything.</P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"59904","href":"/conversations/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/td-p/59904","style":"forum","thread_style":"forum","messages_count":28,"solved":true,"last_post_time":"2022-12-13T20:13:54.047-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"parent":{"type":"message","id":"62710","href":"/messages/62710","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62710#M1664"},"post_time":"2022-12-01T07:11:53.319-08:00","post_time_friendly":"12-01-2022","depth":3,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":1581},"current_revision":{"type":"revision","id":"62718_1","last_edit_author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"last_edit_time":"2022-12-01T07:11:53.319-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62718'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62718'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62718'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62718'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62718'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62718'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62718'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62718'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62718'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1295.9492994444445,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62716","href":"/messages/62716","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62716#M1668","author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"subject":"Re: Sandbox in graphacademy apparently not working !","search_snippet":"Thanks Elaine for the fast response. Unfortunatelly disabling Enhanced Tracking Protection and all ad blockers etc. does not change anything.","body":"<P>Thanks Elaine for the fast response. Unfortunatelly disabling Enhanced Tracking Protection and all ad blockers etc. does not change anything.</P>","teaser":"","board":{"type":"board","id":"graphacademy_discussions","href":"/boards/graphacademy_discussions","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/bd-p/graphacademy_discussions"},"conversation":{"type":"conversation","id":"59904","href":"/conversations/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/td-p/59904","style":"forum","thread_style":"forum","messages_count":28,"solved":true,"last_post_time":"2022-12-13T20:13:54.047-08:00","last_post_time_friendly":"12-13-2022"},"topic":{"type":"message","id":"59904","href":"/messages/59904","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/59904#M1356"},"parent":{"type":"message","id":"62709","href":"/messages/62709","view_href":"https://community.neo4j.com/t5/graphacademy-discussions/sandbox-in-graphacademy-apparently-not-working/m-p/62709#M1663"},"post_time":"2022-12-01T07:10:29.774-08:00","post_time_friendly":"12-01-2022","depth":3,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":1582},"current_revision":{"type":"revision","id":"62716_1","last_edit_author":{"type":"user","id":"16005","href":"/users/16005","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/16005","login":"jannik"},"last_edit_time":"2022-12-01T07:10:29.774-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62716'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62716'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62716'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62716'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62716'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62716'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62716'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62716'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62716'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"firefox_107_0","popularity":-1295.9725202777777,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62704","href":"/messages/62704","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62704#M37062","author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"subject":"Re: How to optimize the performance of scanning edge data","search_snippet":"I don’t think relationship indexes would help since you are not searching on a relationship property. How about you determine the query plan and post it, v","body":"<P>I don’t think relationship indexes would help since you are not searching on a relationship property. How about you determine the query plan and post it, v</P>","teaser":"","board":{"type":"board","id":"graph_platform","href":"/boards/graph_platform","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/bd-p/graph_platform"},"conversation":{"type":"conversation","id":"62530","href":"/conversations/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/td-p/62530","style":"forum","thread_style":"forum","messages_count":7,"solved":false,"last_post_time":"2022-12-01T03:41:12.571-08:00","last_post_time_friendly":"12-01-2022"},"topic":{"type":"message","id":"62530","href":"/messages/62530","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62530#M36958"},"parent":{"type":"message","id":"62701","href":"/messages/62701","view_href":"https://community.neo4j.com/t5/neo4j-graph-platform/how-to-optimize-the-performance-of-scanning-edge-data/m-p/62701#M37061"},"post_time":"2022-12-01T03:41:12.571-08:00","post_time_friendly":"12-01-2022","depth":3,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":243},"current_revision":{"type":"revision","id":"62704_1","last_edit_author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"last_edit_time":"2022-12-01T03:41:12.571-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62704'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62704'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62704'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62704'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62704'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62704'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62704'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62704'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62704'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"apple_iphone_ver16_1","popularity":-1299.460695,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62689","href":"/messages/62689","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/m-p/62689#M49","author":{"type":"user","id":"15691","href":"/users/15691","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15691","login":"Peter_Lian"},"subject":"Re: How to Create the same name (or category) node in a load csv query","search_snippet":"Thanks, it was surprised that the binding variable ( process:Proces) doesn’t influence the type of node. It shows the result successfully after modifying binding variable process to process2.","body":"<P>Thanks, it was surprised that the binding variable (<SPAN><STRONG>process</STRONG>:Proces) doesn’t influence the type of node. It shows the result successfully after modifying binding variable <STRONG>process</STRONG> to <STRONG>process2.</STRONG></SPAN></P>","teaser":"","board":{"type":"board","id":"nodes","href":"/boards/nodes","view_href":"https://community.neo4j.com/t5/nodes/bd-p/nodes"},"conversation":{"type":"conversation","id":"62624","href":"/conversations/62624","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/td-p/62624","style":"forum","thread_style":"forum","messages_count":6,"solved":true,"last_post_time":"2022-11-30T17:56:28.258-08:00","last_post_time_friendly":"11-30-2022"},"topic":{"type":"message","id":"62624","href":"/messages/62624","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/m-p/62624#M42"},"parent":{"type":"message","id":"62641","href":"/messages/62641","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/m-p/62641#M47"},"post_time":"2022-11-30T17:23:27.984-08:00","post_time_friendly":"11-30-2022","depth":4,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":370},"current_revision":{"type":"revision","id":"62689_1","last_edit_author":{"type":"user","id":"15691","href":"/users/15691","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/15691","login":"Peter_Lian"},"last_edit_time":"2022-11-30T17:23:27.984-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62689'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62689'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62689'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62689'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62689'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62689'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62689'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62689'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62689'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"google_chrome_107","popularity":-1309.7564930555557,"excluded_from_kudos_leaderboards":false,"is_promoted":false},{"type":"message","id":"62690","href":"/messages/62690","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/m-p/62690#M50","author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"subject":"Re: How to Create the same name (or category) node in a load csv query","search_snippet":"Yes, it does not influence the type of node.. It is just a variable to reference the node in your cypher query after it has been defined. The node’s label is what determines the nodes type.","body":"<P><SPAN>Yes, it does not influence the type of node.. It is just a variable to reference the node in your cypher query after it has been defined. The node’s label is what determines the nodes type.</SPAN></P>","teaser":"","board":{"type":"board","id":"nodes","href":"/boards/nodes","view_href":"https://community.neo4j.com/t5/nodes/bd-p/nodes"},"conversation":{"type":"conversation","id":"62624","href":"/conversations/62624","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/td-p/62624","style":"forum","thread_style":"forum","messages_count":6,"solved":true,"last_post_time":"2022-11-30T17:56:28.258-08:00","last_post_time_friendly":"11-30-2022"},"topic":{"type":"message","id":"62624","href":"/messages/62624","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/m-p/62624#M42"},"parent":{"type":"message","id":"62689","href":"/messages/62689","view_href":"https://community.neo4j.com/t5/nodes/how-to-create-the-same-name-or-category-node-in-a-load-csv-query/m-p/62689#M49"},"post_time":"2022-11-30T17:56:28.258-08:00","post_time_friendly":"11-30-2022","depth":5,"read_only":false,"edit_frozen":false,"language":"EN","can_accept_solution":false,"placeholder":false,"is_solution":false,"solution_data":{},"metrics":{"type":"message_metrics","views":366},"current_revision":{"type":"revision","id":"62690_1","last_edit_author":{"type":"user","id":"9010","href":"/users/9010","view_href":"https://community.neo4j.com/t5/user/viewprofilepage/user-id/9010","login":"glilienfield"},"last_edit_time":"2022-11-30T17:56:28.258-08:00"},"kudos":{"query":"SELECT * FROM kudos WHERE message.id = '62690'"},"tags":{"query":"SELECT * FROM tags WHERE messages.id = '62690'"},"labels":{"query":"SELECT * FROM labels WHERE messages.id = '62690'"},"images":{"query":"SELECT * FROM images WHERE messages.id = '62690'"},"videos":{"query":"SELECT * FROM videos WHERE messages.id = '62690'"},"attachments":{"query":"SELECT * FROM attachments WHERE message.id = '62690'"},"replies":{"query":"SELECT * FROM messages WHERE parent.id = '62690'"},"ratings":{"query":"SELECT * FROM ratings WHERE message.id = '62690'"},"custom_tags":{"query":"SELECT * FROM custom_tags WHERE messages.id = '62690'"},"moderation_status":"approved","visibility_scope":"public","user_context":{"type":"user_context","kudo":false,"read":false,"can_reply":false,"can_kudo":false,"can_delete":false},"device_id":"apple_iphone_ver16_1","popularity":-1309.2064125,"excluded_from_kudos_leaderboards":false,"is_promoted":false}]