WebDevStudios / wds-headless-wordpress

This codebase has been moved to a monorepo. Please see the documentation to learn more. 🍻
https://github.com/WebDevStudios/nextjs-wordpress-starter
GNU General Public License v2.0
32 stars 15 forks source link

Add GraphQL endpoint for team member meta data #6

Closed oddevan closed 3 years ago

oddevan commented 3 years ago

Feature Description

Added a new field to team members in GraphQL that gets the profile fields as a JSON object.

Feature Screenshots

image

Steps To Verify Feature

Use this query in GraphiQL:

query GET_TEAM_BY_ID {
  team(id: "jim-byrom", idType: SLUG) {
    profileData
  }
}