Hi ashish,
Can you share the query for which you are finding the document based on created .
So it will help us to tell you that what is wrong with the document.
Meanwhile you can try the code snippet which is given below to find the document based on created on : -
HashMap<String, String> otherMetaHeaders = new HashMap<String, String>();
otherMetaHeaders.put("orderByAscending", "_$createdAt");
storageService.setOtherMetaHeaders(otherMetaHeaders);
storageService.findAllDocuments(dbName, collectionName, max, offset, app42callback )
Let me know if its help.