Skip to main content
Incremental refresh is called through the Application API. It is important to note that all table names and field names are those from the DirectQuery local schema.
Here some change examples with their change description.

Multi table add rows

In this case, we have added some new sales for the seller google.
We have also added a new product. sales has a many-to-one relationship with product.
Table sales changes Table products changes Change description

Multi table add rows using an unknown condition

In this case, we have added new rows in sales table.
All these new sales has a new seller which has been added in users table. sales has a many-to-one relationship with users.
Table sales changes Table users changes This change can be expressed with this description which could be cumbersome to build because of the IN condition. Change description Here we managed to resolve a cumbersome condition looking at the data, but sometimes it is not possible to come up with a convenient condition.
In this case you can use the unknown condition.
Change description with an unknown condition This solution could have adverse consequences.
If you have defined a factless hierarchy on user table, the missing link with the fact table forbid us to use the sales table scope.
Connector will full refresh on this hierarchy stream.