I want to use a MySQL database to manage a collection of documents in JSON format. Let's say each document has this structure:
{
"firstname":"John",
"lastname":"Smith",
"books":[
{ "title":"Dune", "author":"Frank Herbert" },
{ "title":"Fahrenheit 451", "author":"Ray Bradbury" }
]
}
How would I use X DevAPI to find documents where the "books" array contains a specific title?