Table columns support extract json?

Is it possible to extract a json data column into multiple filament table columns? e.g data = "{'foo':'yes', 'bar': 'no'}"
TextColumn::make('data>foo')->sortable(),
TextColumn::make('data>bar')->sortable()

I know this can be done manually via the modifyQueryUsing and adding a raw select, just wondering if Filament has a handy way of doing it?
Was this page helpful?