This repository was archived by the owner on Dec 11, 2025. It is now read-only.

Description
It would be nice to have a generic service that:
- receives an array of requested id_pairs (like used in associative tables)
PPPT::Simple::Plural::DeleteInsert.new.call(
[
{ some_id: 1, some_other_id: 2},
{ some_id: 1, some_other_id: 3},
]
)
And takes care of:
- finding existent records
- infer outdated records and delete them
- infer new 'records' and insert them