gatsby-source-datocms icon indicating copy to clipboard operation
gatsby-source-datocms copied to clipboard

seoMetaTags returning incorrect content for property "og:type"

Open claygiffin opened this issue 2 years ago • 0 comments

When making a query using seoMetaTags, the value for "og:type" is being returned as "article" instead of "website".

Query results in the CDA Playground

{
  "attributes": {
    "property": "og:type",
    "content": "website"
  },
  "content": null,
  "tag": "meta"
},

Query results using Gatsby

{
  "tagName": "meta",
  "attributes": {
      "property": "og:type",
      "content": "article"
  }
}

This seems to be happening consistently across all records.

claygiffin avatar Jan 08 '24 21:01 claygiffin