2 different Parse Clients in one app

Can i have 2 different Parse Client Instances in 2 one application?

for example

const parse1 = require(‘parse’);
…initialize here

const parse2 = require(‘parse’);
…initialize here

and use it both?

You cannot do this if you want to use multi parse api you need to use GraphQL api or rest one :slight_smile:

Requiring parse module multiple times will give you the same instance, so you can’t do it that way. If you’re use case allows it, perhaps you could re-initialize Parse just before making call to the server.