EasyDB
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
The EasyDB
node allow to create, read, list and delete keys on an Easy DB database.
CASE: Put
Key: Receives a String
with the key to update. Learn more on easydb.put.
Data: Receives an `Object
, String
, Number
or Boolean
with the data to save in the key. Learn more on easydb.put.
CASE: Get
Key: Receives a String
with the key to retrieve. Learn more on easydb.get.
CASE: Delete
Key: Receives a String
with the key to delete. Learn more on easydb.delete.
CASE: List
The list commands requires no parameters. Learn more on easydb.list.
Environment variables:
easydb: Requires Database and Token to be set.
CASE: Put
This operation returns no data. Learn more on easydb.put.
CASE: Get
Out: Returns an Object
, String
, Number
or Boolean
with the retrieved data. Learn more on easydb.get.
CASE: Delete
This operation returns no data. Learn more on easydb.delete.
CASE: List
Out: Returns an array of Object
, String
, Number
or Boolean
with the all database keys. Learn more on easydb.list.
Retrieve a value from the database.
Request (Get) ➡ EasyDB (Get) ➡ Response (200)
Update a value on the database.
Request (Post) ➡ EasyDB (Put) ➡ Response (200)