WP Manifestindependent plugin directory
manifest / integrations / wp-graphql-crb

WP GraphQL Carbon Fields

Wordpress wrapper to expose Carbon Fields to WpGraphQL queries.

by matepaiva · github.com/matepaiva/wp-graphql-crb

24stars
6forks

Install

No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:

wp plugin install https://github.com/matepaiva/wp-graphql-crb/archive/refs/heads/master.zip

Readme

WpGraphQLCrb

A Wordpress wrapper to expose Carbon Fields to WpGraphQL queries.

Important

This is just the first version. There is a lot of work to be done. This packages exposes all the fields of the container, if the container type is post_meta, term_meta, user_meta, comment_meta or theme_options.

Note: This is a very experimental version, so it is probably shipped with bugs.

Usage

  1. First you have to install Carbon Fields and WpGraphQL.
  2. Then install this package via packagist: composer require matepaiva/wp-graphql-crb
  3. Wrap every Carbon Field container that you want to expose via GraphQL with the static method WpGraphQLCrb\Container::register. For example:
  <?php

  use WpGraphQLCrb\Container as WpGraphQLCrbContainer;
  use Carbon_Fields\Container\Container;
  use Carbon_Fields\Field\Field;

  WpGraphQLCrbContainer::register(
    Container::make('term_meta', __('Custom Data', 'app'))
      ->where('term_taxonomy', '=', 'category')
      ->add_fields([
        Field::make('image', 'crb_img')
          ->set_value_type('url')
      ])
  );
  1. Now the query below will work:
{
  categories {
    edges {
      node {
        id
        crb_img
      }
    }
  }
}

About Theme Options

Theme options are not part of any structure already known by Wordpress, so it has its own root. Every theme_options fields will be displayed in GraphQL as direct children of crb_ThemeOptions. Be carefull about name collision.

Read the full README on GitHub →

Releases

TagPublished
0.0.7 Feb 18, 2024
0.0.6 May 26, 2021
0.0.2 Mar 9, 2021
0.0.1 Mar 8, 2021

These releases are tags only. The author does not attach a packaged zip, so there are no download counts to report.