graphql_update_term

Fires an action when a term is updated via a GraphQL Mutation Params For graphql_update_term $term_id (int): Inserted term object $taxonomy (WP_Taxonomy): The taxonomy of the term being updated $args (array): The args used to insert the term $mutation_name (string): The name of the mutation being performed $context (AppContext): The AppContext passed down the resolve tree $info (ResolveInfo): The ResolveInfo …

graphql_settings_form_bottom

Allow additions to the bottom of the GraphQL settings form Params $form (array): The form to be modified Source File: wp-graphql/src/Admin/Settings/SettingsRegistry.php

graphql_settings_form_top

Allow additions to the top of the GraphQL settings form Params $form (array): The form to be modified Source File: wp-graphql/src/Admin/Settings/SettingsRegistry.php

graphql_init_settings

Action that fires when settings are being initialized Params $registry (WPGraphQL\Admin\Settings\SettingsRegistry): The instance of the SettingsRegistry class Source File: wp-graphql/src/Admin/Settings/SettingsRegistry.php Examples Registers a GraphQL Settings Section Registers a GraphQL Settings Field

graphql_register_settings

Action to hook into to register settings Params $settings (WPGraphQL\Admin\Settings\Settings): Instance of the Settings class Source File: wp-graphql/src/Admin/Settings/Settings.php

graphql_process_http_request

This action can be hooked to to enable various debug tools, such as enableValidation from the GraphQL Config Source File: wp-graphql/src/Router.php

graphql_response_set_headers

Fires an action when the headers are set Params $headers (array): An array containing the response headers Source File: wp-graphql/src/Router.php

graphql_server_config

Run an action when the server config is created. The config can be acted upon directly to override default values or implement new features, e.g., $config->setValidationRules() Params $config (ServerConfig): The Server config $params (OperationParams): Request operation params Source File: wp-graphql/src/Request.php

do_graphql_request

Run an action for reach request Params $query (string): The GraphQL query $operation (string): The name of the operation $variables (array): Variables to be passed to your GraphQL request $params (OperationParams): The Operation Params. This includes any extra params, such as extensions or any other modifications to the request body Source File: wp-graphql/src/Request.php