RESTHeart Angular demo
A Simple Web Application
This is a very simple Angular Web Application hosted at ng-demo.restheart.org. It shows a table of message documents stored in a MongoDB collection and provides a simple form to create a new message document.
Click on Editor
button below and open the code of service.ts
. You’ll see how is easy interacting with the RESTHeart API!
Source code is available at restheart-ng-demo
official Github repository!
For a more complete Angular application that uses exactly the same REST API, please have a look at our Webchat example.
Try the API online
You can use the online demo service so you can play with API without the need to install MongoDB and RESTHeart.
The online demo API exposes one single collection at https://demo.restheart.org/messages
without requiring authentication.
Insert or update the document with _id docid
PUT /db/coll/docid
This request uses write mode set to upsert
. Since RESTHeart v5.3.0, write mode for PUT/PATCH
requests is set by default to update
. Check out here for more informations.
Get the created document
Create a second document with POST /db/coll
If the _id is not specified in the request body, it will be autogenerated as a new ObjectId. The Location
response header specifies the URL of the new document.
Update the first document with PATCH /db/coll/docid
This request uses the dot notation and the $currentDate
operator. These are available in all write requests!
Get the updated document again.
The returned representation contains all the document properties plus few more. The _etag
is updated automatically by RESTHeart for Web caching and ghost writes management.
Find documents via query.
The filter
query parameter allows to specify any MongoDB query.
This instance of RESTHeart is configured to always add the np
query parameter to the request; it gets rid of the collection properties and
returns just an array of documents.