Ivan

Results 4 issues of Ivan

Is something like this possible? ```ruby class Types::SubcategoryType < Types::BaseObject def records BatchLoader.for(object.category_id).batch do |category_ids, loader| records = Record.where(category_id: category_ids).group_by(&:subcategory_id) loader.call(object.subcategory_id, records[object.id]) end end end ``` The goal is to...

When you have an ActiveAdmin config with: ``` config.namespace false do |admin| # ... end ``` The reorder URL generation will raise an error, given there's no actual namespace being...

Is it possible to do something like this? ``` attribute :settings, Setting.to_type, alias: :user_settings ``` And then access the original jsonb through `settings`, but `user_settings` would return the StoreModel Object....

enhancement

Would it be too hard or out of scope to add this feature?

feature