Using Custom Collections
Using custom collections just on the server side
import { Mongo } from 'meteor/mongo';
export const PlayersScores = new Mongo.Collection('players-scores');import { PlayersScores } from "./api/playerScores"PlayersScores.find({}).fetch()PlayersScores.insert({ playerId: player._id, score: player.get("score") })Using custom collections on the client side
Last updated
Was this helpful?