* feat(index): add $not and $nin operators * logical operator * test * test * types * logical * schema ID * types and $ilike fix * index type
16 lines
400 B
TypeScript
16 lines
400 B
TypeScript
export const updateRemovedSchema = `
|
|
type Product @Listeners(values: ["product.created", "product.updated", "product.deleted"]) {
|
|
id: ID
|
|
title: String
|
|
handle: String
|
|
variants: [ProductVariant]
|
|
}
|
|
|
|
type ProductVariant @Listeners(values: ["variant.created", "variant.updated", "variant.deleted"]) {
|
|
id: ID
|
|
product_id: String
|
|
sku: String
|
|
description: String
|
|
}
|
|
`
|