This almost works!
However in myql I have the following data
| CountryID | Country |
| 1 | United Kingdom |
| 2 | Denmark |
| 3 | Non Inland UK |
| 4 | Sweeden |
And in Dataverse I got:
| iu_integration_key | Country |
| 1 | United Kingdom |
| 2 | Denmark |
And as you said(almost),
- Get List Rows to Countries in Dataverse
- Get List Rows to Countries from Mysql
- Filter with `iu_integration_key ne CountryID`
But for some reason is `Denmark` duplicated in the outut
[
{
"CountryID": 2,
"Country": "Denmark",
"CurrencyID": 3,
},
{
"CountryID": 3,
"Country": "Non Inland UK",
"CurrencyID": 1,
},
{
"CountryID": 4,
"Country": "Sweden",
"CurrencyID": 4,
}
]