feat(index): $nin and $not operators (#13289)
* feat(index): add $not and $nin operators * logical operator * test * test * types * logical * schema ID * types and $ilike fix * index type
This commit is contained in:
committed by
GitHub
parent
b3fb0f7634
commit
f764b3a364
@@ -160,14 +160,14 @@ medusaIntegrationTestRunner({
|
||||
...(indexEngine as any).moduleOptions_,
|
||||
schema: `
|
||||
type Product @Listeners(values: ["product.created", "product.updated", "product.deleted"]) {
|
||||
id: String
|
||||
id: ID
|
||||
title: String
|
||||
handle: String
|
||||
variants: [ProductVariant]
|
||||
}
|
||||
|
||||
type ProductVariant @Listeners(values: ["variant.created", "variant.updated", "variant.deleted"]) {
|
||||
id: String
|
||||
id: ID
|
||||
product_id: String
|
||||
sku: String
|
||||
description: String
|
||||
|
||||
Reference in New Issue
Block a user