public async find(key: string): Promise<Client> {
    const document: any = await MongoClientRepository.database.findOne({ key });

    if (!document) {
      return null;