query {
validateProducts(
data: [
{
name: "Smart Watch",
price: 199.99,
email: "contact@smartwatch.com",
releaseDate: "2023-05-15T10:00:00",
discount: 10
},
{
name: "Fitness tracker",
price: 49.99,
email: "invalid-email",
releaseDate: "2023-05-15",
discount: 5
}
],
targetFormat: {
id: "advanced-format",
data: {
"Name": {
"type": "string",
"description": "Product name",
"attributes": ["required", "capitalized"]
},
"Price": {
"type": "number",
"description": "Product price",
"attributes": ["required", "positiveNumber", "currency"]
},
"Email": {
"type": "string",
"description": "Contact email",
"attributes": ["required", "email"]
},
"ReleaseDate": {
"type": "string",
"description": "Product release date",
"attributes": ["required", "datetime"]
},
"Discount": {
"type": "number",
"description": "Product discount percentage",
"attributes": ["required", "percentage"]
}
}
}
)
}