ashhitch / wp-graphql-yoast-seo

This is an extension to the WPGraphQL plugin for Yoast SEO
GNU General Public License v3.0
216 stars 49 forks source link

No way to query date archive SEO settings #148

Closed marcusforsberg closed 1 year ago

marcusforsberg commented 1 year ago

As far as I can tell, there currently is no way to query the SEO settings for date archives, as set in Search Appearence in Yoast:

Screen Shot 2023-01-19 at 4 44 39 PM

Are there any plans to implement something like this or any pointers on how it could be done so I can get started on a PR? :)

ashhitch commented 1 year ago

@marcusforsberg v4.22.0 has just been published with Date archive title and description

query GetSeoConfig {
    seo {
        meta {
            date {
                description
                title
            }
        }
    }
}
marcusforsberg commented 1 year ago

Thanks, that works. I have a suggestion for a potential improvement which I've added a new issue for: #151