我正在使用cassandra 5.1,我想查询Set中用户定义类型的字段 .

我创建了我的类型:

CREATE TYPE public.fluxes (
    filter_name text,
    flux float,
    flux_prec smallint,
    flux_error float,
    flux_error_prec smallint,
    flux_qual text, 
    flux_var text,
    flux_mult text,
    flux_bibcode text,
    system text
);

我想只获得 filter_name 字段我应该做什么来获得这个?