EasyDB
General
The EasyDB
node allow to create, read, list and delete keys on an Easy DB database.
Input
CASE: Put
Key: Receives a
String
with the key to update. Learn more on easydb.put.Data: Receives an `
Object
,String
,Number
orBoolean
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.
Output
CASE: Put
This operation returns no data. Learn more on easydb.put.
CASE: Get
Out: Returns an
Object
,String
,Number
orBoolean
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
orBoolean
with the all database keys. Learn more on easydb.list.
Use Cases
Retrieve a value from the database.
Request (Get) ➡ EasyDB (Get) ➡ Response (200)
Update a value on the database.
Request (Post) ➡ EasyDB (Put) ➡ Response (200)
Last updated
Was this helpful?