Given a schema on Parse Server
Sampleclass {
objectId: "objectId"
abcd: "abcd",
file: {
__type: "File",
name: "name",
url: "https://path/to/file.jpg"
}
}
I want response to be:
GET /parse/classes/Sampleclass/objectId
{
"objectId": "objectId"
"abcd": "abcd",
"file": "https://path/to/file.jpg"
}
How do I achieve this?
I am using Defaults everywhere (Mongodb, without any custom file adapter).