-
I want to save all the financial events for a time period in the resultArray. MWS API doesn't provide all data at once, it gives a nextToken till there is data available. So I tried to loop until the ......
-
i want to integrate my product's website with amazon seller and mws account to -List orders in amazon,Get up-to-date for order placed buy any user into my databasegetting details of order placed ......
-
I use this meta tags to make google crawler know that I have two languages for my site, as suggested here support.google. <link rel="alternate" hreflang="x-default" href="http://www.example.com" /......
-
BackgroundI have a NodeJS app that is meant to be used as a RESTful API. It is connected with a MongoDB database in the backend using Mongoose. The app is built upon the idea of nested documents. It ......
-
I have following models.User modelnameemailCategory modelnamecreatedById (references User model)A Category is created by a user and a user can have multiple categories created by him/she.......
-
I'm building a chat and this is my models:const mongoose = require('mongoose');const messageSchema = new mongoose.Schema({ body: { type: String, required: true }, sender:......
-
I have 3 collections in MongoDB with the following Schema: const userSchema = new Schema({ firstname: { type: String, trim: true }, surname: { type: String }})......
-
I have two mongodb model as following.const CompanySchema = new Schema( { sections: [{ name: { type: String }, budgets: [{ // indicates from CalcSchema index: { type: ......
-
I have a Game model and a Player model. A game has an array of referenced players.Inside of a game method one of the players is modified (not directly through this association instances but elsewhere)......
-
I have a product and I have a property that brings an array with a provider id and its price. The idea is that every product has an array with multiples providers, each one with its own price.However,......
-
I'm want to join collection mongoDB but I've 2 model in project.ADMINDETAIL and ADMINDETAIL get UID from member.model.js .How I populate that.queue.model.jsvar mongoose = require("mongoose&......
-
I have created some tasks to recompile the sass with browser-sync whenever changes are made.My gulp file is as follows:'use strict';var gulp = require('gulp');var sass = require('gulp-sass');......
-
Server information:Centos - Apache (set proxy: domain name to localhost: 3000 of nodejs)Nodejs and Reacjs - for the webError flow:Before logging in, the website runs ok.After we login, the ......
-
I've looked through countless of posts on here on how to do this, and I wasn't able to get this simple task working. I'm using Apache as a proxy that is suppose to encrypt/decrypt TSL packets, and ......
-
I have a question on my Node-js program, I need to transaction from my account address to contract address.And this is my contract code:contract price{ address owner; constructor() ......