setValues([ 'name' => 'D - Identification_20', 'table_name' => 'civicrm_value_demographics', 'title' => 'D - Identification', 'extends' => 'Individual', ])->execute(); \CRM_Core_DAO::executeQuery("UPDATE civicrm_custom_group SET name = 'D - Identification_20' WHERE id = %1", [1 => [$customGroup[0]['id'], 'Integer']]); $customField = CustomField::create()->setValues([ 'label' => 'Test field', 'custom_group_id' => $customGroup[0]['id'], 'html_type' => 'Text', 'data_type' => 'String', ])->execute(); Contact::get()->addSelect('*')->addSelect('custom.*')->execute(); } }