I'm looking to create a list that includes all my containers from the InfosContainers collection that have a status of "running" or "paused," but I'm not sure how to properly execute this query.
Here is what I've attempted:
containersRngPsd = InfosContainers.find({ stateContainer: { $in: ["running", "paused"] } });
Unfortunately, I encountered an error:
imports/ui/chart.js:43:87: Unexpected token, expected , (43:87)
It seems like there may be an issue with my request. Can someone assist me in resolving this problem?