Add Ash Neo4j support for Combination Queries
As per Ash Weekly Issue 16 Ash 3.5.9 now supports combination queries.
Combination queries allow a single result set to include 'stacked' queries, and require support in the datalayer.
The datalayer must have def can?(_, :combine), do: true and implement the combination_of(combinations, resource, domain) behaviour, as specified.
There is recent combination support in ETS and Postgres DataLayers.
Combination queries may include calculations which are yet to be supported in the Ash Neo4j, so unlikely in scope for this issue.
Add Ash Neo4j support for Combination Queries
As per Ash Weekly Issue 16 Ash 3.5.9 now supports combination queries.
Combination queries allow a single result set to include 'stacked' queries, and require support in the datalayer.
The datalayer must have
def can?(_, :combine), do: trueand implement thecombination_of(combinations, resource, domain)behaviour, as specified.There is recent combination support in ETS and Postgres DataLayers.
Combination queries may include calculations which are yet to be supported in the Ash Neo4j, so unlikely in scope for this issue.