Good evening I would like you to explain to me how it would be done to add by vue to mongodb ++ in victories
const Schema = new Schema
nombre: string,
victorias: Number,
may be the question somewhat confusing just beginning to practice and...
I am trying to perform a search in a mongo document that has the energy word saved in the name, I make the query in the following way:
{'$match': {
'name': {
'$regex': '.*energetico.*',
'$options': 'i...
I am trying to connect the phalcon framework with the non-relational database mongo DB, by making the configurations shown on the phalcon page and some forums, I still can not make the connection and every time I want to make a query or any inte...
good morning.
I have the following collection in mongoDb:
{
"signupDate": "2018-11-22T19:14:02.047Z",
"_id": "5bf700269e5b59276885eda5",
"userName": "pruebas",
"email": "[email protected]",
"password": "abc1234",
"interests": "{\"followEmai...
Hello, I have the following data models in mongo db
var mongoose = require("mongoose");
var accountSchema = new mongoose.Schema({
name: String
});
module.exports = mongoose.model("Account",accountSchema);
A second model
var mongoose...
good day, I have a query where I should change the value of a boolean for its denied value, for it would take care of the positional $ operator
but what I do not find in the documentation is how to deny it, I leave the query that I am using:...
I have a problem showing an array of a JSON object from MongoDB. The Ajax request works correctly and the data is displayed well by the console.
My problem comes in the view, when I try to show that data in the html and the component cl...
I have my code in Anguar to consume an SSE:
import { Component, OnInit, NgZone } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
export interface Prueba {
id: string,
nombre: str...
I am trying to import a csv file into a mongodb collection, I have seen that it can be done through the mongoimport command, however I need to do it through php because I want to validate the entered data afterwards. So far I have managed to ope...