woocommerce_graphql_can_introspect

woocommerce_graphql_can_introspect

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.10.9.4

apply_filters('woocommerce_graphql_can_introspect') is found 1 times:

  • /src/Api/Infrastructure/GraphQLControllerBase.php line 766
    			 * @param bool             $can_introspect Whether the principal can introspect, derived from `$principal->can_introspect()`.
    			 * @param object           $principal      The resolved principal.
    			 * @param \WP_REST_Request $request        The REST request being processed.
    			 */
    			$can_introspect = apply_filters( 'woocommerce_graphql_can_introspect', $can_introspect, $principal, $request );
    		} catch ( \Throwable $e ) {
    			return false;
    		}
    
    		return true === $can_introspect;
    	}