Is it possible to format how an object is returned as JSON from a PageMethod? ie. removing the first "d" element from the data, without writing the JSON from scratch.
From { "d": { "name": "bob", "email": "[email protected]" } }
To { "name": "bob", email: "[email protected]" }