Merge branch 'main' into next

This commit is contained in:
nocobase[bot] 2024-10-25 00:27:45 +00:00
commit fdee3f0afe
2 changed files with 11 additions and 0 deletions

View File

@ -12,6 +12,7 @@ const TYPE_TO_ACTION = {
belongsTo: 'get',
hasOne: 'get',
belongsToMany: 'list?pageSize=9999',
belongsToArray: 'get',
};
export const getAction = (type: string) => {
if (process.env.NODE_ENV !== 'production' && !(type in TYPE_TO_ACTION)) {

View File

@ -16,6 +16,11 @@ function escapeLike(value: string) {
export default {
$includes(value, ctx) {
if (value === null) {
return {
[Op.is]: null,
};
}
if (Array.isArray(value)) {
const conditions = value.map((item) => ({
[isPg(ctx) ? Op.iLike : Op.like]: `%${escapeLike(item)}%`,
@ -32,6 +37,11 @@ export default {
},
$notIncludes(value, ctx) {
if (value === null) {
return {
[Op.not]: null,
};
}
if (Array.isArray(value)) {
const conditions = value.map((item) => ({
[isPg(ctx) ? Op.notILike : Op.notLike]: `%${escapeLike(item)}%`,