Skip to content
Advertisement

How to use Meteor.users.update to inc a variable in a case specific object?

I need to inc a variable within the case specific object in an array in the profile object in the users object/mongo collection. The case specific object’s name will equal a local variable, and the I want to inc the variable num by 1. What would the syntext for this look like?

Advertisement

Answer

I don’t know exactly what your model looks like but here is an example that may help you.

JavaScript

In this example, we specify in the query that we’re interested in updating only the array item whose tag matches our local variable, then we use mongodb $ positional operator to increase the item count property accordingly.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement