Is it possible to filter selectable assets for UPROPERTY?

Hi guys,
does anybody know if/how that can be done?

For example if you type in the editors content search bar “materialdomain == ui” it shows only the ui materials.
I have a UMaterialInterface* variable, that should ever only accept ui materials and therefore the asset picker should also only show materials with this domain, without the need to manually write the same search expression everytime into the search bar.

thanks in advance

Did you ever figure this out? I also need to filter that list by an arbitrary predicate.

Have you tried using the Metadata specifier AllowedClasses? For example,

UPROPERTY(EditAnywhere, meta = (AllowedClasses = "MaterialInterface"))

More info can be found in the Unreal Docs