6.0 KiB
Collection Resource
A Collection resource allows client apps to save and query data.
Setting up a collection
After creating a Collection resource in the dashboard, you can set up the schema that will automatically validate data sent to the resource url over HTTP. You can configure this schema in the dashboard.
The Data view in the dashboard allows you to edit the Collection manually.
Property types
You can currently use the following property types:
- String - Arbritrary text data
- Number - Numeric value, supports floating points
- Boolean - True or false
- Date - A specific point in time
Formats
When POSTing or PUTing data to a resource /path, you must format the request body as a JSON string and pass the header "Content-Type: application/json".
Saving data
To save data, send a POST request to the root of the Collection:
POST /people
Content-Type: application/json
{
"age": 23,
"firstName": "Joe",
"lastName": "Smith"
}
The server will respond with the object, which will have a new _id property.
200 OK
{
"_id": "4f71fc7c2ba744786f000001",
"age": 23,
"firstName": "Joe",
"lastName": "Smith"
}
This _id is used to find the object's URL (i.e. /people/4f71fc7c2ba744786f000001)
Listing data
A GET request to the root of the Collection will return an array of objects in the collection:
GET /people
200 OK
[
{
"_id": "4f71fc7c2ba744786f000001",
"age": 23,
"firstName": "Joe",
"lastName": "Smith"
},
{
"_id": "4f71fe8b2ba744786f000002",
"age": 36,
"firstName": "John",
"lastName": "Doe"
}
]
Retrieving a specific object
A GET request at an object's URL will return the properties of that object:
GET /people/4f71fc7c2ba744786f000001
200 OK
{
"_id": "4f71fc7c2ba744786f000001",
"age": 23,
"firstName": "Joe",
"lastName": "Smith"
}
Updating an object
A PUT (or POST) request at an object's URL will update the properties specified on the object.
PUT /people/4f71fc7c2ba744786f000001
Content-Type: application/json
{
"age": 24
}
The server will respond with the entire object:
200 OK
{
"_id": "4f71fc7c2ba744786f000001",
"age": 24,
"firstName": "Fred",
"lastName": "Smith"
}
Deleting an object
A DELETE request at an object's URL will permanently remove that object from the collection:
DELETE /people/4f71fc7c2ba744786f000001
204 No Content
Filtering results
You can add querystring parameters to a GET request at the root to filter the results by properties specified:
GET /people?firstName=Joe&lastName=Smith
NOTE: This currently only works for String properties.
Advanced querying
If you need to query additional types of properties, pass a JSON object as the q parameter with the properties you wish to filter:
GET /people?q={
"age": 23
}
The q parameter supports MongoDB's query language for particularly advanced queries. Note that Collections do not currently support embedded documents or arrays.
GET /people?q={
"$orderby": { "age": 1 },
"name": {
"$regex": "^j"
"$options": "i",
}
}
Collection Event Handlers
You can attach micro-scripts to events to add logic and validation to your objects. Collections currently support the following events:
- On GET - called when data is read
- On Validate - called before creating or updating an object.
- On POST - called when data is created
- On PUT - called when data is updated
- On DELETE - called when data is destroyed
Reading and setting properties
In an event micro-script, the this object refers to the current object, and has all of the properties of the object.
You can set values on the this object during an On Post or On Put event. These changes will be saved to the database.
// On POST:
this.dateCreated = new Date();
// On Validate:
this.totalScore = this.level1Points + this.level2Points;
Note: If you intend for a property to be "automatic" (calculated by the server, and never provided by the client), you will need to mark it as Optional in the dashboard.
Accessing the current user
If the request is coming from a logged in User, you can use the "me" object to access their properties.
// On POST:
this.creator = me._id;
Cancelling an event
You can stop any event by calling the cancel(message, [code]) method.
//On DELETE:
if (this.protected) {
cancel('This post is protected and cannot be deleted');
}
DELETE /posts/123456
400 Bad Request
{
"message": "This post is protected and cannot be deleted"
}
You can pass an integer to the cancel() method as the second parameter to set the HTTP status code. For example, 401 means "Unauthorized".
//On PUT
if (this.creator !== me._id) {
cancel("You cannot edit this post because it is not yours!", 401);
}
PUT /posts/13456
Content-Type: application/json
{ ... }
401 Unauthorized
{
"message": "You cannot edit this post because it is not yours!"
}
Validation
Use the error(name, message) function to add a validation error.
//On Validate
if (this.age < 18) {
error('age', 'must be older than 18')
}
POST /people
{
"firstName": "Joe",
"lastName": "Smith",
"age": 12
}
400 Bad Request
{
errors: {
"age": "must be older than 18"
}
}
Hiding properties
If you wish to hide certain properties from a user, use the hide(propertyName) function.
//On Get
if (this.creator !== me._id) {
hide('lastName');
hide('age');
}
Protecting properties from modification
Use the protect(propertyName) function to protect specified properties during a PUT.
//On Put
protect('createdDate');