ContributionsMost RecentMost LikesSolutionsRe: Filter files from directory for a certain period Thanks @marjan.karafiloski , I’ve used directory browser , filter with combination of pipeline parametars . After that I was able to filter the files from 1st to 5th December. Regards, Igor Bozhinovski Filter files from directory for a certain period Hi , we have multiple files that are saved on SLDB in SnapLogic. Is it possible to filter the files for a certain period , for example from 01/12/2023 to 10/12/2023 ? SolvedRe: Check if field inside array has value and route the output Thanks Spiro , but for now we need to check the element value inside in the array. Regards, Igor Check if field inside array has value and route the output [ { “items”: [ { “test”: " ", “id”: 1 }, { “test”: “test”, “id”: 2 } ] } ] Currently we have an array like this , we need to route the output from the Router based on the test field , if there is a value the output should go to the upper branch if there is not value for the test field the output should go to the lower branch. Is there any array method or something else that can be used to achive this ? Re: How to create new array if there are more than 100 elements in the array Thanks this is what i was exactly looking for. Re: How to create new array if there are more than 100 elements in the array Thanks Alchemiz , the array is now spliited in two. One array with 100 elements and the other with the remaining elements. This is the current output : "ShipmentCreateDate": "01/01/2023", "ShipmentID": "1", "SerialNumbers": [ [ { "SerialNo": "123" }, { "SerialNo":"456" } ], [ { "SerialNo": "101" }, { "SerialNo": "102" } ] ] I was wondering if something like this output is possible : "ShipmentCreateDate": "01/01/2023", "ShipmentID": "1", "SerialNumbers": [ [ { "SerialNo": "123" }, { "SerialNo":"456" } ] "ShipmentCreateDate": "01/01/2023", "ShipmentID": "1", "SerialNumbers": [ [ { "SerialNo": "101" }, { "SerialNo": "102" } ] ] Where the first output would be the array with the 100 elements and the remaining fields that are not part of the array and the second output would be the array with the remaining elements and the fields that are not part of the array. Regards, Igor Re: How to create new array if there are more than 100 elements in the array Thanks Marjan , the array is part of the object and the Group By N snap doesnt seems to help. The array looks like this: SerialNumbers":[ { “SerialNo”:“123”, “SerialNo”:“456”, } ] Regards, Igor How to create new array if there are more than 100 elements in the array Hi , currently we have an array that contains more then 100 elements , approximately 168. Is it possible with some transformation in the mapper to create another array that will contain the rest 68 elements ? We would have 1 array with 100 elements and the other should contain the rest of the elments. Or we can split the array if there are more then 100 documents , that would work too. SolvedMap Json Structure Currently we have json data like this : { “Test”: “1” “SerialNumbers”: { “SerialNo”: [ “123”, “456” ] } The desired output is like this: { “Test”: “1” “SerialNumbers”: [ {“SerialNo”: “123”}, {“SerialNo”: “456”} ] } Is there any function we could use to achive this in SnapLogic ? SolvedRe: Azure MySql Database connection We’ve changed the type of the account to MySQL Database Account. After that we’ve managed to connect to the MySQL Azure database.