palmiak/smartcrawl-wpgraphql

A WPGraphQL extension for SmartCrawl.

Installs: 4

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 2

Forks: 1

Open Issues: 1

Type:wordpress-plugin

1.0.1 2020-03-31 10:50 UTC

This package is auto-updated.

Last update: 2024-10-29 05:41:13 UTC


README

Requirements

To use this plugin you'll need:

Usage

For posts and post types:

query GET_POSTS {
  posts {
    edges {
      node {
        id
        title
        date
       	smartcrawl_seo{
          title
          metaDesc
          metaRobotsNoindex
          metaRobotsNofollow
          opengraphTitle
          opengraphDescription
          canonical
          opengraphImage {
            sourceUrl
          }
          twitterTitle
          twitterDescription
          twitterImage {
            sourceUrl
          }
          twitterCard
          focusKeywords
        }
      }
    }
  }
}

For taxonomies:

query GET_CATEGORIES {
  categories {
    edges {
      node {
       smartcrawl_seo{
          title
          metaDesc
          metaRobotsNoindex
          metaRobotsNofollow
          opengraphTitle
          opengraphDescription
          canonical
          opengraphImage {
            sourceUrl
          }
          twitterTitle
          twitterDescription
          twitterImage {
            sourceUrl
          }
          twitterCard
          focusKeywords
        }
      }
    }
  }
}

Contributions

Big thanks to Ashley Hitchcock for inspiration.