I am using SQL Server as a data source with DirectQuery. There is just one table with 6 fields that contains more than 100 million rows. My report contains one visual "Card" that should display count of values from particular field. This report is embedded on a web page. As I don't want to get count of all values I use Power BI API to filter by some name. My filter looks like this:
Snippet
var filter = { $schema: "http://powerbi.com/product/schema#advanced", target: { table: "MyTable", column: "MyColumn" }, logicalOperator: "And", conditions: [ { operator: "Contains", value: "FilteredValue" } ]};
The problem is that it doesn't get any result. I can see just loading spinner on my visual. I've tried the same filter for small database with 10 rows and it works as expected.
Any ideas?