postgresql_anonymizer是比较强大的数据脱敏框架,以下是与hasura graphql-engine 集成的简单说明
使用说明
- 方法一
最简单的使用数据脱敏的方式是基于postgresql_anonymizer 提供的mask schema,因为对于以上的脱敏的数据是通过
视图生成的,对于使用可以参考https://www.cnblogs.com/rongfengliang/p/12460261.html,hasura graphql-engine的集成
主要是添加mask 的schema - 方法二
直接调用函数的方式:通过提供的函数,好处是使用简单,比如以上参考中的表使用视图以及函数的方式,
hasura graphql-engine的集成主要是添加视图的track
create or replace view appdemo as
select id, fistname, lastname,anon.partial(phone,2,$$******$$,2) from people;
参考资料
https://gitlab.com/dalibo/postgresql_anonymizer/-/tree/master