Skip to content

Instantly share code, notes, and snippets.

@dominickm
Created August 28, 2012 00:29
Show Gist options
  • Select an option

  • Save dominickm/3493800 to your computer and use it in GitHub Desktop.

Select an option

Save dominickm/3493800 to your computer and use it in GitHub Desktop.
This is the PFQuery sample for Android.
void someMagicalFunction() {
ParseQuery query = new ParseQuery("SomeClass");
query.whereEqualTo("SomeProperty", "MagicString"
query.findInBackground(new FindCallback() {
public void done(Lis<ParseObject>objects, ParseException e) {
// do something with objects
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment