How can i grab the insert id after insert query ?
$query = $this->modelsManager->executeQuery("INSERT INTO CRM\Models\Services (name,text) VALUES (:name:, :text:) ", [
'name' => $this->request->getPost("name"),
'text' => $this->request->getPost("text"),
]);