Skip to content

Get Tags

Fetch the tags on the current note.

Signature

TypeScript
function getTags(): Promise<{
  [label: string]: {
    [fieldName: string]: any;
  };
}>;

Parameters

  • None.

Returns

Examples

TypeScript
const tags = await zeta.v1.query.getTags();