Hello,
Welcome to our Microsoft Q&A platform!
>>My Question here is I have already people purchased full version of the app using trial/full version handled by Microsoft Store. How can I get that information and give users who already purchased the full version?
You might need to do some extra work on this. After you cancel the trial/full mode of your app, you might need to check the license of the app using the StoreContext class in the Windows.Services.Store namespace to see if the customer needs to purchase the durable add-on or not.
You could use the following code:
StoreContext context = StoreContext.GetDefault();
StoreAppLicense appLicense = await context.GetAppLicenseAsync();
In the StoreAppLicense object you get, you could get the full license data via the ExtendedJsonData property. Its template is here: Schema for StoreAppLicense and StoreLicense.
Then you could check the isActive, isTrial or expiration parameter to check if the current user is a trial before.