age-website icon indicating copy to clipboard operation
age-website copied to clipboard

AGE Project

Results 33 age-website issues
Sort by recently updated
recently updated
newest added

In the documentation of age [here](https://age.apache.org/age-manual/master/functions/string_functions.html) the toUpper() function contains the wrong definition. The definition states 'toUpper() returns the original string in lowercase.' whereas it should be 'toUpper() returns the...

The syntax structure and usage documentation of CALL ... YIELD has yet to be added. A basic example: ```postgresql SELECT * FROM cypher('test', $$ MATCH (v) CALL label(v) YIELD label...

Added initial documentation for CALL clause and its usage as CALL ... YIELD. Covers issue #154

The following example is not working properly which is at https://age.apache.org/age-manual/master/functions/user_functions.html It has multiple issues: 1. Missing ')' closing parentheses 2. Missing typecasting 3. Result is incorrect (sqrt(25) is 5...

The SET clause documentation says that with SET clause, we can update the labels of nodes but any example is not provided to support that. Besides this, I tried updating...

The query provided under the terminal CREATE clauses [here](https://age.apache.org/age-manual/master/clauses/create.html#terminal-create-clauses) gives error instead of outputting '0 rows returned' Upon executing the following query: `SELECT * FROM cypher('graph_name', $$ CREATE /* Create...

There is a heaading named 'Agtype NULL vs Postgres NULL' under 'Null' in 'Data Types - An Introduction to agtype' which is neither linked nor filled. [https://age.apache.org/age-manual/master/intro/types.html#agtype-null-vs-postgres-null](url).

A SET clause syntax (`SET a = {..}`) is implemented and merged recently (https://github.com/apache/age/pull/468). It may be useful to add it in the documentation. The following code from the test...

**Current Syntax:** ``` SELECT * FROM cypher('graph_name', $$ CREATE (:Person {name: 'Andres', title: 'Developer') $$) as (n agtype); ``` ### '}' is missing **Correct Syntax:** ``` SELECT * FROM cypher('graph_name',...

I see that there is a python packages requirement defined in requirements.txt which also contains the ones mentioned in requirements_min.txt. Is there a reason for requirements_min.txt?