Is it possible to set a collection ID manually when using the local API e.g.
await payload.create({
collection: Post.slug,
data: {
id: '66a162e91d86648e1303e0d2',
title: 'Test Post'
},
});
When running the above a unique ID is created for that collection when I want to use this above id instead.
Note: the usage for this is for local testing and I do not intend ever performing this action in production for the obvious reasons.