Skip to content

Releases: ashhitch/wp-graphql-yoast-seo

Fix undefined meta properties

07 Jun 07:02
Compare
Choose a tag to compare

Fix undefined meta properties

Filter site url

07 Jun 06:53
Compare
Choose a tag to compare
  • Added filter to change site_url (thanks @matepaiva)

Decode HTML Enities in Strings

26 Apr 09:32
78d97cd
Compare
Choose a tag to compare

Strings now get run through PHP HTML Decoder.

Get_head Yoast meta fields

08 Apr 15:23
Compare
Choose a tag to compare

This release actually contains this work ...

query GetHead {
  post(id: "1", idType: DATABASE_ID) {
    seo {
      fullHead
    }
  }
  category(id: "1", idType: DATABASE_ID) {
    seo {
      fullHead
    }
  }
  user(id: "1", idType: DATABASE_ID) {
    seo {
      fullHead
    }
  }
  seo {
    contentTypes {
      post {
        archive {
          fullHead
        }
      }
    }
  }
}

Get_head Yoast meta fields

08 Apr 14:13
694a206
Compare
Choose a tag to compare

Yoast head meta fields as a single string (same as get_head in rest API)

Guard against undefined errors

31 Mar 07:06
Compare
Choose a tag to compare

Small release to guard against undefined errors

Reading time and archive details

19 Mar 08:50
Compare
Choose a tag to compare

2 more community feature requests

  • Archive settings for post types
  • Reading Time
query GetSettings {
  seo {
    contentTypes {
      post {
        title
        metaDesc
        schemaType
        schema {
          raw
        }
        archive {
          archiveLink
          breadcrumbTitle
          hasArchive
          metaDesc
          metaRobotsNoindex
          title
        }
      }
    }
  }
}

Updated deprecated function changed in WPGraphQL v1.1.0

08 Jan 08:26
Compare
Choose a tag to compare

Updated deprecated function changed in WPGraphQL v1.1.0 (thanks @jasonbahl)

Post type raw schema to the root settings

22 Dec 06:07
2316bf4
Compare
Choose a tag to compare

A small release to add the post type raw schema to the root settings

query GetSettings {
  seo {
    contentTypes {
      post {
        metaDesc
        schemaType
        schema {
          raw
        }
      }
    }
  }
}

Add Raw Archive Schema data

16 Dec 19:28
b740cb5
Compare
Choose a tag to compare
query GetPostsWithIsPrimary {
    posts {
        pageInfo {
            startCursor 
            seo {
                schema {
                    raw
                }
            }
        }
        nodes {
            title
            slug
            categories {
                edges {
                    isPrimary
                    node {
                        name
                        count
                    }
                }
            }
        }
    }
}