CRUD example REST API
This Codehooks CRUD example app implements a complete REST API and operations for a space/datastore and multiple collections.
This Codehooks CRUD example app implements a complete REST API and operations for a space/datastore and multiple collections.
Data objects in a datastore can be manipulated in any update operation. To manipulate one or many data object(s) a range of special operators can be applied using the updateOne(...) or updateMany(...) API.
The database API lets you execute queries and manipulate data in the built in NoSQL datastore.
This serverless Codehooks example backend exposes a graphql endpoint for CRUD operations.
Create fast lookup indexes in a datastore. Combined with streaming queries, indexing can be a big improvement for your application performance.
Run Redis-like operations against a Key-Value datastore.
Querying your NoSQL database is essential in many applications. The codehooks.io NoSQL database use a subset of the popular MongoDB NoSQL query language.
Introduction
A key-value store has three basic operations: get, set and delete.
This is part-3 of the key-value database tutorial for codehooks.io serverless JavaScript. In this part we'll focus on how to increment and decrement values in the built-in key-value database.
Welcome to this part-4 of the key-value database tutorial for codehooks.io serverless Node.js backend. In this part we'll focus on how to work with multiple key-value pairs in a key-value database.