Can you get the page title in Gatsby?

Hi, is there way to get the page title in gatsby, for example in the child component?

Hi Ernest, I don’t know if I understood correctly your doubt, if you are referring to loader you can find the metadata by doing a query similar to

plasmicData(path: {eq: "YOUR_PATH"}) {
  pageMetadata {
    description
    path
    title
  }
}

if it’s purely Gatsby, you can look at gatsby docs and siteMetadata , feel free to ask out if this wasn’t what you meant