Parse Console

SDK is loaded and Parse is on window. Open DevTools console to run queries.

unset (read-only / public ACL queries only)
Loading SDK…
// Try in console:
const Q = new Parse.Query("TestClass");
Q.find().then(console.log).catch(console.error);

// With master key (after pasting it above):
new Parse.Object("TestClass").set("note","hi").save(null,{useMasterKey:true});