Rasool_sof
Rasool_sof

Reputation: 55

How to add custom ObjectId to parse-server object?

I have a problem when adding data to my User class by Mongoose that can't update it later by parse API.

I've found that's because of mongoose use ObjectId for _id field and parse just work with plain string as ObjectId.

The question is how can I set my custom unique plain string as ObjectId in Parse Server object creation?

Upvotes: 2

Views: 1002

Answers (1)

Raschid JFR
Raschid JFR

Reputation: 650

You can do it like this:

const cryptoUtils = require('parse-server/lib/cryptoUtils');
const id = cryptoUtils.newObjectId();

Source: https://github.com/parse-community/parse-server/blob/master/src/cryptoUtils.js

Upvotes: 2

Related Questions