Robert Gruener
Robert Gruener
Allow for the option to not just eat errors when writing the metadata files. The code isn't as clean as it could be but I was optimizing for making sure...
Using the movie example I have the following schema: ``` type Movie { title: String! released: Int actors: [Person] @relation(name:"ACTED_IN",direction:IN) directors: [Person] @cypher(statement:"MATCH (this)() RETURN count(*) AS totalMoviesCount") } ```...
## Summary This was a miss in the element-wise PR. It wasnt being passed through everywhere
## Summary This adds support for `keys=None` to signify a global aggregation. Global aggregations can be added to a join and are then joined with each record on the left...
## Summary Currently the average implementation uses a sum / count. For large aggregations this can cause an overflow of sum. This changes the implementation to utilize a running average...