I am trying to get a list of the functions that have property "FunctionalityAreas" -> "BasicFunctions". The following does not work:
Entity["WolframLanguageSymbol",
{EntityProperty["WolframLanguageSymbol", "FunctionalityAreas"] ->
ContainsAny[{"BasicFunctions"}]}] // EntityList
(*
Missing["QueryValueIncompatibleWithProperty", \
{"WolframLanguageSymbol", "FunctionalityAreas",
ContainsAny[{"BasicFunctions"}]}]
*)
However, EntityProperty["WolframLanguageSymbol", "FunctionalityAreas"] is a valid property for WolframLanguageData["Properties"]. I've tried the both with and without wrapping in EntityProperty and with and without ContainsAny.
How do I collect these with an implicit entity filter on the "FunctionalityAreas"?
WolframLanguageData[EntityClass["WolframLanguageSymbol", {"FunctionalityArea", "BasicFunctions"}]]$\endgroup$EntityList[EntityClass["WolframLanguageSymbol", {"FunctionalityArea", "BasicFunctions"}]]also works. $\endgroup$