class GroupsController < ApplicationController def index render jsonapi: Group.where(parent_id: nil), include: [children: [children: [:children]]] end end