You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
) =>ReturnType<Func> // You can use cutom function for wrapping transaction in atomic operation, example: runInTransaction from https://github.com/Aliheym/typeorm-transactional
95
+
// MicroOrm
96
+
arrayType?:string[]; //Custom type for indicate of array
77
97
};
78
98
}
79
99
```
@@ -254,7 +274,7 @@ Available query params:
254
274
```typescript
255
275
typeFilterOperand
256
276
{
257
-
in:string[] // is equal to the conditional of query "WHERE 'attribute_name' IN ('value1', 'value2')"
277
+
in:string[] // is equal to the conditional of query "WHERE 'attribute_name' IN ('value1', 'value2')"
258
278
nin: string[] // is equal to the conditional of query "WHERE 'attribute_name' NOT IN ('value1', 'value1')"
259
279
eq: string // is equal to the conditional of query "WHERE 'attribute_name' = 'value1'
260
280
ne: string // is equal to the conditional of query "WHERE 'attribute_name' <> 'value1'
0 commit comments