age icon indicating copy to clipboard operation
age copied to clipboard

Graph database optimized for fast analysis and real-time data processing. It is provided as an extension to PostgreSQL.

Results 445 age issues
Sort by recently updated
recently updated
newest added

Hey, are list comprehensions supported in AGE? Using syntax from Neo4j doesnt seem to work, simple example: ``` SELECT * FROM cypher('g1', $$ MATCH (v) RETURN [x in v.array_field] $$)...

enhancement
help wanted
question

Hello, and hi5 to all AGE community! Please consider adding LXC/Snap and/or Kata as additional containerisation option for AGE project... as many Web Hosts (incl. both of mine) restrict or...

good first issue
help wanted

Is there a way to add PostGis data as property to a node (e.g., a [point geometry](https://postgis.net/docs/ST_MakePoint.html))? I've tried: ``` SELECT * FROM cypher('testgraph', $$ CREATE (n:Test {id: 1, location:...

bug

Initial Task to discuss the development for GraphQL Support of Apache AGE. Please comment here to be assigned to the project. https://spec.graphql.org/October2021/

Review each regression test set and make any necessary revisions or additions. Regression tests can be run by using the command 'make installcheck' in the incubator-age directory on your local...

As of now, after setting the variable for the session, one can create graph with it, but cannot query cypher ```sql select set_config('my.graph', 'test', false); SELECT * FROM create_graph(current_setting('my.graph')) #...

enhancement

The internal graph representation and management routines are in the source file `age_global_graph.c`. For this task, please do the following - 1. Review the above source code and try to...

This task is to help you become familiar with the GDB debugger and how a command is processed in PostgreSQL. GDB is a full featured debugger with lots of capabilities....

A complete graph on n nodes means that all pairs of distinct nodes have an edge connecting them. Syntax: ``` ag_catalog.age_create_complete_graph(graph_name Name, nodes int, vertex_label_name Name DEFAULT = NULL, vertex_properties...

enhancement

TODO: redefine Syntax ``` ag_catalog.age_create_path(graph_name Name, n int, left_node agtype, right_node agtype, vertex_label_name Name DEFAULT = NULL, vertex_properties agtype DEFAULT = NULL, edge_label_name Name DEAULT = NULL, edge_properties agtype DEFAULT...

enhancement