You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Are all responses from the server wrapped in value property?
For example, if i use a custom implementation of the data layer by overriding query and return - { "_id": "yes", "business_key": "yes yes", "email": "[email protected]"} - to the callback function. Then the odata API returns that object and the same object wrapped inside a value object.
Hi,
Are all responses from the server wrapped in value property?
For example, if i use a custom implementation of the data layer by overriding query and return - { "_id": "yes", "business_key": "yes yes", "email": "[email protected]"} - to the callback function. Then the odata API returns that object and the same object wrapped inside a value object.
{
"@odata.context": "http://localhost:1337/$metadata#users/$entity",
"_id": "yes",
"business_key": "yes yes",
"email": "[email protected]",
"value": {
"_id": "yes",
"business_key": "yes yes",
"email": "[email protected]"
}
}
The text was updated successfully, but these errors were encountered: