Thomas Trompette
a2a272fed4
Add crud actions (#8500)
Adding update / delete / find actions
Update and delete are not really different than creation.
Find uses the same logique as for graphql filters.
Expected formats are:
Filter
```
{
"and": [
{
"name": {
"eq": "salut"
}
},
{
"employees": {
"eq": "0"
}
}
]
}
```
Order
`[ { "name": 'AscNullsFirst' } ]`
2024-11-15 10:10:00 +01:00
..
2024-11-15 10:10:00 +01:00
2024-03-20 16:23:46 +01:00
2024-11-14 18:05:05 +01:00
2024-09-13 19:42:22 +02:00
2024-10-17 22:40:30 +02:00
2024-10-30 12:07:11 +01:00
2024-11-14 18:05:05 +01:00
2024-10-30 12:07:11 +01:00
2024-10-08 13:31:44 +02:00
2024-11-06 14:45:33 +01:00
2024-11-14 18:05:05 +01:00
2024-10-28 11:25:29 +00:00
2024-11-15 00:05:42 +01:00
2024-06-05 18:16:53 +02:00
2024-08-20 19:44:29 +02:00
2024-11-08 12:41:11 +01:00