Is it possible to query Puppet facts that contain dot in their name?

Is it possible to query structured Puppet facts that contain dot in their name?

E.g. if the fact is reported by Puppet like this:

{
  "php":
    {
      "7.4":
        "installed": "yes"
    },
    {
      "8.1":
        "installed": "no"
    }
}

Is it possible to query facts (via Monitor > Facts UI) and get the result for facts.monitoring::php::7.4::installed = yes and somehow escape the dot in the PHP version part?

Currently, I’m getting the Field '4::installed' not recognized for searching! error message.