Graphql error on search SQLSTATE[HY000]: General error: 1191 Can't find FULLTEXT index matching the column list code example
Example: Can't find FULLTEXT index
ALTER TABLE `items` ADD FULLTEXT(`item_title`,`item_description`);
SELECT *
FROM items
WHERE MATCH (item_title,item_description) AGAINST ('dog');