Skip to content

Commit

Permalink
Code Review
Browse files Browse the repository at this point in the history
  • Loading branch information
Kmaschta committed Aug 5, 2019
1 parent 6b008d4 commit 29d1670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/DataProviders.md
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,8 @@ Request Type | Response format
`CREATE` | `{ data: {Record} }`
`UPDATE` | `{ data: {Record} }`
`UPDATE_MANY` | `{ data: {mixed[]} }` The ids which have been updated
`DELETE` | `{ data: {Record} }` The resource that had been deleted or nothing
`DELETE_MANY` | `{ data: {mixed[]} }` The ids which have been deleted or an empty array
`DELETE` | `{ data: {Record|null} }` The record that has been deleted (optional)
`DELETE_MANY` | `{ data: {mixed[]} }` The ids of the deleted records (optional)
`GET_MANY` | `{ data: {Record[]} }`
`GET_MANY_REFERENCE` | `{ data: {Record[]}, total: {int} }`

Expand Down

0 comments on commit 29d1670

Please sign in to comment.