For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get

How to get Record content and information.

Get Record From Tag

db.get('tag')
Parameter
About
Type
Required

tag

The Record's tag

String

Read

await db.read('tag')

Get Path

db.locate('tag')
Parameter
About
Type
Required

tag

Record's tag

string

Get Tag

db.get('tag').tag

Exists

This will only return true or false.

await db.has('tag')
Parameter
About
Type
Required

tag

The tag to check for

String

Get All Records

Parameter
About
Type
Required

options.tagOnly

Set to true to return an array of tags instead of Records

Boolean

options.limit

Max results

Number

options.filter

Filter results

Function

Find Record

Similar to getAll, but returns the first match.

Parameter
About
Type
Required

filter

Filter results

Function

Last updated