Site search search-results is returning null for titles

The request: https://site-api.datocms.com/search-results?q=sports

The response:

{
    "data": [
        {
            "id": "_roYqIgB8rFJF1Do053D",
            "type": "search_result",
            "attributes": {
                "title": null,
                "body_excerpt": "The Nightingale-Bamford School Go to Main Nav Who We Are Close Who We Are At Nightingale, our students are known, seen, and valued. Learn about our history and mission as we enter our second century, a",
                "highlight": {
                    "title": null,
                    "body": [
                        "A focus on connecting joy and physical activity, whether through [h]sports[/h], dance, or individual pursuits",
                        "Middle School athletics have a no-cut policy to encourage students to join teams and learn team [h]sports[/h]",
                        "Whether through [h]sports[/h] or play, there is an intentional focus on body awareness and strength.",
                        "Competing in team [h]sports[/h] with a no-cut policy brings them the freedom to try whatever they choose.",
                        "[h]Sports[/h] are played at Nightingale in three seasons, and tryouts are held before each begins."
                    ]
                },
                "score": 4.105237,
                "url": "https://www.nightingale.org/athletics/"
            }
        },
        {
            "id": "FLoYqIgB8rFJF1Do057-",
            "type": "search_result",
            "attributes": {
                "title": null,
                "body_excerpt": "The Nightingale-Bamford School Go to Main Nav Who We Are Close Who We Are At Nightingale, our students are known, seen, and valued. Learn about our history and mission as we enter our second century, a",
                "highlight": {
                    "title": null,
                    "body": [
                        "Athletic Calendars [h]Sports[/h] Volleyball Cross Country Soccer Tennis Basketball Indoor Track Squash Swimming",
                        "Badminton Lacrosse Softball Track and Field Select a [h]sport[/h] to view calendars 20 East 92nd St New York"
                    ]
                },
                "score": 3.5776396,
                "url": "https://www.nightingale.org/athletic-calendar/"
            }
        },

Hello @datocms.com

It seems like those pages do not have a <title> meta tag value, therefore the query doesn’t return any title
Adding a title tag with a value to that page and re-spidering the website should solve the issue.

This was working previously.

We’re importing HelmetDatoCms

import { HelmetDatoCms } from "gatsby-source-datocms"

and rendering

<HelmetDatoCms
        favicon={data.datoCmsSite.faviconMetaTags}
        htmlAttributes={{ lang: "en" }}
        seo={pageData.seoMetaTags}
      >
        <link rel="icon" href={FallbackFaviconPng} />
      </HelmetDatoCms>

with data queried from

datoCmsInteriorPage(path: { eq: $path }) {
      seoMetaTags {
        ...GatsbyDatoCmsSeoMetaTags
      }

Are we missing a step?

Hello @datocms.com

You’d need to see if pageData.seoMetaTags has a defined “title” attribute, let us know