query Post ($path: String!) { post: ghostPost (path: $path) { id title path date: published_at (format: "D. MMMM YYYY") tags { id slug path title: name belongsTo { edges { node { ... on GhostPost { id title path } } } } } authors { name id slug image: profile_image } description: excerpt content: html image: feature_image } page: ghostPage (path: $path) { id title path date: updated_at (format: "D. MMMM YYYY") description: excerpt content: html } } query Metadata { metadata { siteUrl ghost { title url } } }