Is it possible to insert/POST an entry with the id that will be used? I have some gaps in my existing ids, so it’d be nice to be able to skip some.
I don’t believe currently we have a method for doing so (as we don’t send the ID in the create request to the database), generally it’s considered bad form to give the user control of the ID when doing a POST/Create request.
Most databases prefer to handle the ID generation especially in certain cluster environments (MariaDB being a good example, as it will do ID skips based on the node in the cluster to prevent ID conflicts)