Support encrypting and decrypting specific fields with KMS. Not sure about the syntax though.
Maybe something like this would do
Table.insert({foo: 'bar'}, {hello: 'world', user: 'baz'}).encrypt(['hello', 'user']).exec();
Table.find({foo: 'bar'}).decrypt(['hello']).exec();
Support encrypting and decrypting specific fields with KMS. Not sure about the syntax though.
Maybe something like this would do