Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-transformer-md-opengraph

query MyQuery {
  allMarkdownRemark {
    nodes {
      frontmatter {
        title
      }
      children {
        ... on Opengraph {
          id
          og {
            title
            mdTitle
            mdUrl
            description
            image {
              url
            }
          }
        }
      }
    }
  }
}
© 2023 Gatsby, Inc.