wp-graphql/wp-graphql

View on GitHub

Showing 688 of 826 total issues

Method register_type has 570 lines of code (exceeds 40 allowed). Consider refactoring.
Open

    public static function register_type() {
        register_graphql_object_type(
            'RootQuery',
            [
                'description' => __( 'The root entry point into the Graph', 'wp-graphql' ),
Severity: Major
Found in src/Type/ObjectType/RootQuery.php - About 2 days to fix

Function parse_request has a Cognitive Complexity of 118 (exceeds 5 allowed). Consider refactoring.
Open

    public function parse_request( string $uri, $extra_query_vars = '' ) {
        // Attempt to parse the provided URI.
        $parsed_url = wp_parse_url( $uri );

        if ( false === $parsed_url ) {
Severity: Minor
Found in src/Data/NodeResolver.php - About 2 days to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

File RootQuery.php has 848 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace WPGraphQL\Type\ObjectType;

use GraphQL\Error\UserError;
Severity: Major
Found in src/Type/ObjectType/RootQuery.php - About 2 days to fix

Function AbstractArgView has a Cognitive Complexity of 98 (exceeds 5 allowed). Consider refactoring.
Open

const AbstractArgView = (props) => {
  const [displayArgActions, setDisplayArgActions] = useState(true);
  const { definition } = props;

  const { argValue, arg, styleConfig } = props;
Severity: Minor
Found in packages/graphiql-query-composer/components/AbstractArgView.js - About 1 day to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function FieldView has 392 lines of code (exceeds 40 allowed). Consider refactoring.
Open

const FieldView = (props) => {
  const [displayFieldActions, setDisplayFieldActions] = useState(false);

  let _previousSelection;

Severity: Major
Found in packages/graphiql-query-composer/components/FieldView.js - About 1 day to fix

File TypeRegistry.php has 791 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace WPGraphQL\Registry;

use GraphQL\Error\Error;
Severity: Major
Found in src/Registry/TypeRegistry.php - About 1 day to fix

Method init has 382 lines of code (exceeds 40 allowed). Consider refactoring.
Open

    protected function init() {
        if ( empty( $this->fields ) ) {
            $this->fields = [
                'ID'                        => function () {
                    return $this->data->ID;
Severity: Major
Found in src/Model/Post.php - About 1 day to fix

Function AbstractArgView has 376 lines of code (exceeds 40 allowed). Consider refactoring.
Open

const AbstractArgView = (props) => {
  const [displayArgActions, setDisplayArgActions] = useState(true);
  const { definition } = props;

  const { argValue, arg, styleConfig } = props;
Severity: Major
Found in packages/graphiql-query-composer/components/AbstractArgView.js - About 1 day to fix

Function set_object_terms has a Cognitive Complexity of 89 (exceeds 5 allowed). Consider refactoring.
Open

    protected static function set_object_terms( int $post_id, array $input, WP_Post_Type $post_type_object, string $mutation_name ) {

        /**
         * Fire an action before setting object terms during a GraphQL Post Object Mutation.
         *
Severity: Minor
Found in src/Data/PostObjectMutation.php - About 1 day to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function init has a Cognitive Complexity of 88 (exceeds 5 allowed). Consider refactoring.
Open

    protected function init() {
        if ( empty( $this->fields ) ) {
            $this->fields = [
                'ID'                        => function () {
                    return $this->data->ID;
Severity: Minor
Found in src/Model/Post.php - About 1 day to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function QueryBuilder has 362 lines of code (exceeds 40 allowed). Consider refactoring.
Open

const QueryBuilder = (props) => {
  const [newOperationType, setNewOperationType] = useState("query");
  const [operation, setOperation] = useState(null);
  const [operationToScrollTo, setOperationToScrollTo] = useState(null);

Severity: Major
Found in packages/graphiql-query-composer/components/QueryBuilder.js - About 1 day to fix

File Post.php has 558 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
/**
 * Model - PostObject
 *
 * @package WPGraphQL\Model
Severity: Major
Found in src/Model/Post.php - About 1 day to fix

Method init_type_registry has 248 lines of code (exceeds 40 allowed). Consider refactoring.
Open

    public function init_type_registry( self $type_registry ) {

        /**
         * Fire an action as the type registry is initialized. This executes
         * before the `graphql_register_types` action to allow for earlier hooking
Severity: Major
Found in src/Registry/TypeRegistry.php - About 1 day to fix

AbstractConnectionResolver has 63 functions (exceeds 20 allowed). Consider refactoring.
Open

abstract class AbstractConnectionResolver {
    /**
     * The source from the field calling the connection.
     *
     * @var \WPGraphQL\Model\Model|mixed[]|mixed
Severity: Major
Found in src/Data/Connection/AbstractConnectionResolver.php - About 1 day to fix

Function RootView has 244 lines of code (exceeds 40 allowed). Consider refactoring.
Open

const RootView = (props) => {
  let _previousOperationDef;

  const { index } = props;

Severity: Major
Found in packages/graphiql-query-composer/components/RootView.js - About 1 day to fix

File AbstractConnectionResolver.php has 518 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

namespace WPGraphQL\Data\Connection;

use GraphQL\Deferred;
Severity: Major
Found in src/Data/Connection/AbstractConnectionResolver.php - About 1 day to fix

Function Help has 223 lines of code (exceeds 40 allowed). Consider refactoring.
Open

const Help = () => {
  return (
    <StyledWrapper>
      <h2>Help</h2>
      <p>
Severity: Major
Found in packages/wpgraphiql/screens/Help/Help.js - About 1 day to fix

Function FieldView has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
Open

const FieldView = (props) => {
  const [displayFieldActions, setDisplayFieldActions] = useState(false);

  let _previousSelection;

Severity: Minor
Found in packages/graphiql-query-composer/components/FieldView.js - About 1 day to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method register_post_object_fields has 195 lines of code (exceeds 40 allowed). Consider refactoring.
Open

    public static function register_post_object_fields() {
        /** @var \WP_Post_Type[] */
        $allowed_post_types = \WPGraphQL::get_allowed_post_types( 'objects', [ 'graphql_register_root_field' => true ] );

        foreach ( $allowed_post_types as $post_type_object ) {
Severity: Major
Found in src/Type/ObjectType/RootQuery.php - About 7 hrs to fix

Function get_fields has a Cognitive Complexity of 46 (exceeds 5 allowed). Consider refactoring.
Open

    protected function get_fields( array $config, TypeRegistry $type_registry ): array {
        $fields = $config['fields'];

        $fields = array_filter( $fields );

Severity: Minor
Found in src/Type/WPInterfaceTrait.php - About 7 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Severity
Category
Status
Source
Language