Download the PHP package hsimah-services/wp-graphql-metabox without Composer
On this page you can find all versions of the php package hsimah-services/wp-graphql-metabox. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hsimah-services/wp-graphql-metabox
More information about hsimah-services/wp-graphql-metabox
Files in hsimah-services/wp-graphql-metabox
Package wp-graphql-metabox
Short Description WPGraphQL integration for Metabox
License GPL-3.0-or-later
Informations about the package wp-graphql-metabox
WPGraphQL-MetaBox: WPGraphQL provider for Meta Box
Quick Install
Download and install like any WordPress plugin.
Documentation
The WPGraphQL documentation can be found here.
- Requires PHP 7.3+
- Requires WordPress 5.4+
- Requires WPGraphQL 1.1.3+
- Requires Meta Box 5.3.8+
- Requires MB User Meta extension for User fields
Overview
This plugin provides an integration for Meta Box and WPGraphQL.
By simply adding an extra graphql_name
property to the field registration the field will be exposed in the GraphQL schema.
Usage:
This assume you know how to expose custom post types in WPGraphQL - read their documentation for further info.
Using Meta Box, define a custom field. Copy and paste the generated code to your functions.php
(or where ever you store your custom code).
wp-graphql-metabox options
option | type | effect |
---|---|---|
graphql_name |
string |
adds the field to the GraphQL object(s) identified in post_types |
graphql_mutate |
boolean |
adds the field to the GraphQL object(s) create and update mutation input |
Add in the graphql_name
to the field definition:
That's it. The field randomNumber
will be exposed on the type post
. This will work for any custom post types you may create.
NB: You must expose custom types by adding show_in_graphql
to the configuration of the CPT.
A simple query might look like this:
Limitations
Currently the plugin only supports custom fields on post
and user
types (ie no Settings Pages).
Currently the plugin only supports using the following Meta Box types:
taxonomy
taxonomy_advanced
switch
checkbox
checkbox_list
background
color
custom_html
date
heading
datetime
oembed
password
radio
textarea
time
select
email
tel
text
url
wysiwyg
fieldset_text
select_advanced
text_list
key_value
number
range
single_image
user
post
group
If you require a field which is not supported please feel free to submit an issue (or better yet, a PR!)