In an AppIntent
we can declare an IntentDescription
with a categoryName
to group similar intents:
struct OpenArtist: AppIntent {
static var description: IntentDescription = IntentDescription("Opens a specific artist.", categoryName: "artistsSection")
// Additional properties
}
But how can we assign the same category to the "Find AppEntity" intent generated when we declare an EntityPropertyQuery
? I want to group it along with the other intents that handle the same entity, but since it is generated by the system, I don't know how to assign a category to it.