This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.0 | |
info: | |
version: 1.6.2 | |
title: Appwrite | |
description: Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs) | |
termsOfService: https://appwrite.io/policy/terms | |
contact: | |
name: Appwrite Team | |
url: https://appwrite.io/support | |
email: [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.0 | |
info: | |
version: 1.6.2 | |
title: Appwrite | |
description: Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs) | |
termsOfService: https://appwrite.io/policy/terms | |
contact: | |
name: Appwrite Team | |
url: https://appwrite.io/support | |
email: [email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INFO] Ignoring app.myapp:gwtapp-shared:jar:0-SNAPSHOT; neither a gwt-lib or jar:sources; Did you forget to use <type>gwt-lib</type> in the dependency declaration? | |
[INFO] Turning off precompile in incremental mode. | |
[INFO] Super Dev Mode starting up | |
[INFO] workDir: /home/Projects/myapp_gwtapp_gwt28/target/gwt/codeserver | |
[WARNING] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". | |
[WARNING] SLF4J: Defaulting to no-operation (NOP) logger implementation | |
[WARNING] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. | |
[INFO] Loading Java files in app.myapp.App. | |
[INFO] Module setup completed in 18609 ms | |
[INFO] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Mungo mungo = new Mungo(); | |
DB testDB = mungo.getDB("testDB"); | |
DBCollection messages = testDB.createCollection("Message"); | |
BasicDBObject obj | |
= new BasicDBObject("{\"hello\" : \"world\"}") | |
.append("hi", "there"); | |
.append("good", "morning"); | |
WriteResult wr = messages.insert(obj); // Done! | |
Greeting greeting = messages.findOne(obj.getId()).as(Greeting.class); // Get it |