Re: Apache AGE (Incubating) - Community Graduation Vote

2021-12-02 Thread Muhammad Usama
+1 from me along with a huge thanks and congrats to the whole Apache AGE team. I have been involved with PostgreSQL and related open source projects for more than a decade, and when I came across this Graph extension for PostgreSQL, it immediately made me very excited and encouraged to become a

Re: Apache AGE (Incubating) - Community Graduation Vote

2021-12-02 Thread Muhammad Shoaib
+1 In my opinion, the AGE project team has achieved a lot and they are trying to make their product better for end users by adding more features into it. The AGE community is also growing with the passage of time and its members are now spread over five continents from Europe to Asia. Team is

Re: Apache AGE (Incubating) - Community Graduation Vote

2021-12-02 Thread Jim Jagielski
+1 On 2021/12/02 02:10:05 Andrew Ko wrote: > First off, thanks to our mentors for guidance and support. > Secondly, thanks to committers and contributors for ideas, suggestions, > advice, pull requests and commits .. .and bug reports. > > Graph technology is now one of the most popular methods

[GitHub] [incubator-age] pdpotter commented on issue #151: Can you add support for other field types for vertexes?

2021-12-02 Thread GitBox
pdpotter commented on issue #151: URL: https://github.com/apache/incubator-age/issues/151#issuecomment-984512682 It's difficult to analyze your issue without a complete minimal reproducible example, but I think your issue might be more related to

[GitHub] [incubator-age] afidegnum edited a comment on issue #151: Can you add support for other field types for vertexes?

2021-12-02 Thread GitBox
afidegnum edited a comment on issue #151: URL: https://github.com/apache/incubator-age/issues/151#issuecomment-984501702 ``` def node_tree(parentid , element): if parentid: x = {key:value for (key,value) in element.attrib.items()} print(x) for child in

[GitHub] [incubator-age] afidegnum commented on issue #151: Can you add support for other field types for vertexes?

2021-12-02 Thread GitBox
afidegnum commented on issue #151: URL: https://github.com/apache/incubator-age/issues/151#issuecomment-984501702 ``` def node_tree(parentid , element): if parentid: x = {key:value for (key,value) in element.attrib.items()} print(x) for child in

[GitHub] [incubator-age] pdpotter commented on issue #151: Can you add support for other field types for vertexes?

2021-12-02 Thread GitBox
pdpotter commented on issue #151: URL: https://github.com/apache/incubator-age/issues/151#issuecomment-984475898 Can you explain in more detail what doesn't work out for you? I do get expected results with your queries: ``` SELECT * FROM ag_catalog.cypher('test_graph', $$CREATE

[GitHub] [incubator-age] afidegnum opened a new issue #151: Can you add support for other field types for vertexes?

2021-12-02 Thread GitBox
afidegnum opened a new issue #151: URL: https://github.com/apache/incubator-age/issues/151 this didn't work out for me `CREATE (n:Person {name: 'top_node', attrib: {myclass: 'id'}})` neither a list of attributes. `CREATE (n:Person {name: 'Joe', attrib: [{myclass: 'id'}]})`