We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adacc16 commit 682118cCopy full SHA for 682118c
packages/drivers/redis/src/index.ts
@@ -701,7 +701,9 @@ export class RedisDriver implements Driver {
701
} else if (condition.type === 'not') {
702
// Handle NOT filter: { type: 'not', child: {...} }
703
console.warn('[RedisDriver] NOT operator in filters is not fully supported in legacy format');
704
- return this.convertFilterConditionToArray(condition.child);
+ if (condition.child) {
705
+ return this.convertFilterConditionToArray(condition.child);
706
+ }
707
}
708
709
0 commit comments