activerecord-hierarchical_query icon indicating copy to clipboard operation
activerecord-hierarchical_query copied to clipboard

Simple DSL for creating recursive queries with ActiveRecord

Results 6 activerecord-hierarchical_query issues
Sort by recently updated
recently updated
newest added

Is there a reason to not support it? Thanks

I'm trying to traverse a table with circular references. The table looks like this: ``` create_table "umbrella_relationships" do |t| t.integer "umbrella_id" t.integer "underlying_id" t.index ["umbrella_id"], name: "index_umbrella_id_on_umbrellables", using: :btree t.index...

bug

Hello, Currently, I'm using this gem to try it out on my data model, and I'm having Postgres SQL syntax errors on the most basic recursive queries. This is the...

We have a hierarchical tree of `X` which this works well for but each leaf on that tree has_many `Y` relations and we need a way to recursively select all...

Some of the patterns involved here are a bit dated. We need to update them with more modern Ruby.