The following query caused an HTTP 500 error, but if I select only one source as per the second query, the result works correctly.
DisplayHeadlines(Headlines.Definition().Query("Topic:COM AND daterange:2025-06-13T10:11:54.000Z,2025-06-17T23:59:59.999Z AND ( Source:RTRS OR Source:FT )")
.Count(0)
.GetData());
DisplayHeadlines(Headlines.Definition().Query("Topic:COM AND daterange:2025-06-13T10:11:54.000Z,2025-06-17T23:59:59.999Z AND ( Source:FT )")
.Count(0)
.GetData());
How do I include multiple sources for News Queries?