Modify

Modify Record Content (JSON Only)

Change the Record's key's value to something.

db.setValue('tag','key','value')

Parameters

NameAboutTypeRequired

tag

The Record's tag

String

key

The key to change

String

value

The value to set to

String

Overwrite Record Content

Overwrite a Record found by it's tag.

db.overwrite('tag',data)

Parameters

NameAboutTypeRequired

tag

The Record's tag

String

data

The data to overwrite with

Any (must match file extension)

Modify Record's tag

Change a Record's tag found by its current tag.

db.setTag('old','new')

Parameters

NameAboutTypeRequired

old_tag

The current tag of the Record.

String

new_tag

The new tag you want for the Record.

String

Last updated