Is it possible to use a RegExp in a qs on a CRON task?

I’t trying to find all the posts that have a date field that matches a RegExp so I can do some logic with them but it seems to not be working. Are RegExp allowed like in this example?
const articlesToUpdate = await strapi.api.articles.services.articles.find({ filters: { dateField: { $eq: /\d{4}-\d{2}-\d{2}/, }, }, });

This topic has been created from a Discord post (1234550967714975854) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Don’t think so