WP GraphQL mutation child theme


This is an example child theme for TwentyTwenty displaying how to mutate a profile field from the user in WordPress.
It works off the core functionality implemented in WPGraphQL. In addition, it adds a couple profile fields to the user profile for SEO, therefore it relies on the WP GraphQL Yoast extension. 
An ACF field can also be obtained if set inside resolve function response field for the custom field. This uses a custom field that is not registered through ACF, but can be added through ACF and likewise obtained programmatically in the resolver. 

 As of now, this only allows the mutations for updating, not creating posts or users. To add to the creation mutation, or for any mutation really, find the type name of the mutation input, and place that in the conditional check for the type name on line 90 or 100 of the functions file: $type_name === "UpdateUserInput". In this case, it is UpdateUserInput, but you can typically find that type name by looking through the docs of WPGraphQL.

Comments