Retrieving object type

0
Due to an incorrect build we have had a java action creating files directly on System.FileDocument. I need to delete these files, but cannot figure out how to retrieve them.    I can take one object use the getTypeAsString (community commons) java action to see what the object type so I can iterate over all file documents and filter out any with a type of System.FileDocument. However, there are 6million and that will take some time.    Is there anyway I can retrieve through xpath or another means all filedocuments with a type of System.FileDocument
asked
2 answers
0

Hi Garion,

You could narrow down the results using the createdDate and owner property and add a object type decision in a microflow.

with Task Queues you might be able to speed up things

answered
0

Hi Garion.

Have you used Bizzomate Mendix dev tools widget before? With this browser extension, you can easily access all your objects in your database, filter them, delete them or do other batch actions (if you have the required access right with the logged in user). It might be useful in your case.

 

https://chromewebstore.google.com/search/Bizzomate%20Mendix%20dev%20tools

answered