Can I use filter for MusicCatalogSearchRequest ?

Hi,

I have this code that

let request: MusicCatalogSearchRequest = {
var request = MusicCatalogSearchRequest(term: "Money", types: [Song.self])

request.limit = 1
return request
}()

which request will responce() with a song by artist: Lisa Therefore, can I add the filter with an artist I want ? Like

term: "Money" with artist = "Cardi B"

Thank you so much

Can I use filter for MusicCatalogSearchRequest ?
 
 
Q