tachybase_todo/packages/collections/src/utils.ts

19 lines
304 B
TypeScript
Raw Normal View History

2021-09-23 00:16:04 +08:00
export default {
fiter: {
and: [
{ a: 'a' },
{ b: 'b' },
{ c: 'c' },
{ 'assoc.a': 'abc1' },
{ 'assoc.b': 'abc2' },
{ 'assoc.c': 'abc3' },
{
and: [
{ 'assoc.a': 'abc1' },
{ 'assoc.b': 'abc2' },
],
},
],
},
};