Using TOZ Store
Data Structure
my_data = { 'some_plain_key':'encrypted_sensitive_value', ... } //data will be encrypted as the write operation moves through the SDK
let data = {
'first_name': 'Jon',
'last_name': 'Snow',
'phone': '555-555-1212',
}
//metadata is left in plain text to enable queries on your data
let metadata = {
'house' : 'Stark'
}
//record types help to group your data together
let record_type = 'contact'
let record = await client.write(record_type, data, metadata)Sharing
Searching (Beta)
Last updated