Dubnium
v0
v0
  • Newest version
  • Reference
    • Install
    • Quick Start
    • API
      • Create and Delete Records
      • Modify Records
      • Get Records
      • Fuzzy Search Records
      • Other
    • returnType
    • License
  • Discord
  • NPM Page
  • Support the Project
  • ES5 vs ES6
Powered by GitBook
On this page
  • Modify Record Content
  • Overwrite Record Content
  • Modify Record's tag

Was this helpful?

  1. Reference
  2. API

Modify Records

Modify Record Content

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

import { modifyRecordValueByTag } from 'dubnium'
modifyRecordValueByTag("tag", "key", "value")

Overwrite Record Content

Overwrite a Record found by it's tag.

import { overwriteByTag } from 'dubnium'
overwriteByTag("tag",{"data":"here"})

Modify Record's tag

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

import { modifyTag } from 'dubnium'
modifyTag("old_tag","new_tag")
PreviousCreate and Delete RecordsNextGet Records

Last updated 3 years ago

Was this helpful?