Max Kießling
Max Kießling
In Order to be able to match certain ID we have to be able to specify GradoopIDs inside a query I would suggest the following markup ``` MATCH (a) WHERE...
We should support alternate labels in the MATCH clause E.g. ```cypher MATCH (me:Person|:Alien) RETURN me ``` Which is equal to ```cypher MATCH (me) WHERE me.__label__ = "Person" OR me.__label__ =...
Once Gradoop supports it, GDL should be able to parse Date and DateTime property values. Gradoop issue https://github.com/dbs-leipzig/gradoop/issues/488 E.g. `WHERE a.birthday > 01.01.1991`
TODO: - [x] Tests - [x] Lazy build of random walks - [x] Documentation
``` cannot resolve 'CAST(avg(CAST(NULL AS DOUBLE)) AS NULL)' due to data type mismatch: cannot cast double to null;; 'Aggregate [cast(avg(cast(null as double)) as null) AS FRESHID27 __ NULL#48721] +- Join...
Index base list access for complex lists (e.g. lists of relationships) needs to work differently than for simple lists. Essentially this becomes a projection of the list entry column and...
Currently ValueJoin only works for Properties if the predicate used for joining however contains an element selector (`ID(a)=ID(b)`) an exception is thrown. The easiest way to solve this would be...
It is afaik. only necessary to check isomorphism criteria for two edges (and nodes) if their types are the same or at least one is unknown. If types differ than...