Questions tagged [parse-cloud-code]

This code runs in the Parse Cloud rather than running on a mobile device. For complex apps, sometimes developers just need a bit of logic that isn't running on a mobile device. Cloud Code makes this possible.

The Parse Platform's vision is to let developers build any mobile app without dealing with servers. For complex apps, sometimes developers just need a bit of logic that isn't running on a mobile device. Cloud Code makes this possible.

Cloud Code is easy to use because it's built on the same JavaScript SDK that powers thousands of apps. The only difference is that this code runs in on a Parse Server rather than running on a mobile device. When developers update their Cloud Code, it becomes available to all mobile environments instantly. They don't have to wait for a new release of their application. This lets developers change app behavior on the fly and add new features faster.

1120 questions
-1
votes
3 answers

Can't get return value from javascript function

I don't know what the problem is. It keeps returning an empty array. That is, movieIds is always empty. function getMoviesInCinema(theCinema){ var cinema = theCinema; var query = new Parse.Query("showing"); var movieIds = []; …
-2
votes
1 answer

Writing server side code using nodejs on parse server app

How would I go about starting to write server code using node js, and be able to utilize it through my parse server managed app. Similar to what cloudCode does, expect that I want to use nodejs, and Parse state that "cloudCode is not nodejs". Is it…
user3676224
  • 863
  • 2
  • 11
  • 25
-2
votes
1 answer

Is there any AWS support for Parse Cloud Code?

As I can see a very little community support for parse, AWS javascript SDK is not supported on cloud code. If anybody can suggest anything to use AWS services from cloud code it will be a great help.
-2
votes
1 answer

Parse default Emails with MailGun API

I have developped an iOS and Android App with Parse Backend. I have setup mailgun API and cloud code too. But i want help for "How to send all parse default emails to users using mailgun API. Emails like (Verify Email, Reset password, etc..).How can…
-2
votes
3 answers

TypeError: Object [object Object] has no method ' '

I am getting the following error when I try to create a customer. I tried downgrading Parse. Currently it is running the latest(2.2.8) version but I tried version 1.4.2 too, and I am still getting the following error. What can be the reason for this…
EsmaGo
  • 141
  • 1
  • 7
-2
votes
1 answer

Parse query not returning

I am trying to do a little script on Cloud Code that sends an email whenever an object of type Reservas is created. This email needs to contain the information about the user that created this object. I know that using a related field would be…
user2449798
  • 434
  • 1
  • 5
  • 13
-2
votes
3 answers

Parse Cloud Code Deploy

I am currently setting up Parse Cloud Code and I have gotten to the final step which is to deploy the main.js file but when I do this it just opens the file in Adobe Dreamweaver?
-2
votes
2 answers

trigging push notifications - specific object atualized

I need to trigger a push notification to users when a specific object has his value updated. For example, in a to-do app if users share a list of tasks with clock alerts, if the time of the clock alert is updated for some user, every else should be…
-2
votes
1 answer

Cant query object by object id

In my cloud code, I'm trying to query an object from Parse.com right after after I save by using the object id. For some reason its not working right and all the other variations of the starred out line I've tried wont work either. What am I doing…
ian
  • 1,002
  • 2
  • 12
  • 29
-3
votes
1 answer

Access Parse Cloud Code results

IDictionary test2 = new Dictionary { { "username", ParseUser.CurrentUser.Username} }; var result = await ParseCloud.CallFunctionAsync("getShiftCount", test2); …
nick9999
  • 601
  • 1
  • 8
  • 22
1 2 3
74
75