gatsby-source-datocms
gatsby-source-datocms copied to clipboard
seoMetaTags returning incorrect content for property "og:type"
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.