class Gamefic::Query::Extended


Descendants need to be ‘accessible` to be included in the query.
subject’s descendants are excluded from results.
Query the subject’s siblings and their descendants. Unlike ‘Family`, the

def span(subject)

def span(subject)
  Siblings.span(subject).flat_map do |child|
    [child] + subquery_accessible(child)
  end
end