method Qworum.getData
Qworum.getData(path)

Reads a value contained in a data container.

Examples

Read the value of a data container:

try{
  const result = await Qworum.getData(['a data']);
  if (result instanceof Json){
    console.info(`The read operation was successful, the result is: ${JSON.stringify(result.value)}`);
  } else {
    console.info(`The data has not been set yet. Did you call Qworum.getData(['a data']) beforehand ?`);
  }
}catch(error){
  console.error('An unexpected error has occurred during the read.');
}

Parameters

path

The path of the data container.

Return Type

See

Usage

import { Qworum } from ".";