Well I'm having issues with findAll() returning a response when my data structure is:
- {
- "data": [
- {
- "key": "val"
- },
- ...
- ]
- }
vs this which works
- [
- {
- "key": "val"
- },
- ...
- ]
But it is not advised to return a top level array. CAN docs even say this Note: .findAll can also accept an array, but you probably should not be doing that.
Thoughts?