import { fetchVeridaUri } from '@verida/helpers'
const context = client.openContext('Verida: Vault')
try {
const row = fetchVeridaUri(uri, context)
console.log('Fetched row')
console.log(row)
} catch (err) {
// May throw document not found if it doesn't exist
// or no permission to access
console.log(err)
}