Condition Coverage

blib/lib/GraphQL/Execution.pm
Criterion Covered Total %
condition 38 45 84.4


and 3 conditions

line !l l&&!r l&&r condition
433 487 5 3 ${my $v = {"__schema" => {"description" => "Access the current type schema of this server.","name" => "__schema","resolve" => sub { ;},"type" => bless( {"of" => bless( {"_fields_deprecation_applied" => 1,"_fields_resolved" => 1,"_interfaces_resolved" => 1,"description" => "A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.","fields" => {"directives" => {"description" => "A list of all directives supported by this server.","resolve" => sub { ;},"type" => bless( {"of" => bless( {"non_null" => {},"of" => bless( {"list" => {},"of" => bless( {"_fields_deprecation_applied" => 1,"_fields_resolved" => 1,"_interfaces_resolved" => 1,"description" => "A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.","fields" => {"args" => {"resolve" => sub { ;},"type" => bless( {"of" => bless( {"non_null" => {},"of" => bless( {"list" => {},"of" => bless( {"_fields_deprecation_applied" => 1,"_fields_resolved" => 1,"_interfaces_resolved" => 1,"description" => "Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.","fields" => {"defaultValue" => {"description" => "A GraphQL-formatted string representing the default value for this input value.","resolve" => sub { ;},"type" => bless( {"description" => "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.","name" => "String","non_null" => bless( {"of" => {}}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Input__AND__GraphQL::Role::Output' ),"parse_value" => sub { ;},"serialize" => sub { ;}}, 'GraphQL::Type::Scalar' )},"description" => {"type" => {}},"name" => {"type" => {}},"type" => {"type" => bless( {"list" => bless( {"non_null" => bless( {"of" => {}}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' ),"of" => {}}, 'GraphQL::Type::List__WITH__GraphQL::Role::Output' ),"of" => bless( {"_fields_deprecation_applied" => 1,"_fields_resolved" => 1,"_interfaces_resolved" => 1,"description" => "The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\n\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.","fields" => {"description" => {"resolve" => sub { ;},"type" => {}},"enumValues" => {"args" => {"includeDeprecated" => {"default_value" => 0,"type" => bless( {"description" => "The `Boolean` scalar type represents `true` or `false`.","name" => "Boolean","non_null" => bless( {"of" => {}}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Input__AND__GraphQL::Role::Output' ),"parse_value" => sub { ;},"serialize" => sub { ;}}, 'GraphQL::Type::Scalar' )}},"resolve" => sub { ;},"type" => bless( {"of" => bless( {"list" => {},"of" => bless( {"_fields_deprecation_applied" => 1,"_fields_resolved" => 1,"_interfaces_resolved" => 1,"description" => "One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.","fields" => {"deprecationReason" => {"resolve" => sub { ;},"type" => {}},"description" => {"type" => {}},"isDeprecated" => {"resolve" => sub { ;},"type" => {}},"name" => {"type" => {}}},"name" => "__EnumValue","non_null" => {}}, 'GraphQL::Type::Object' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )}, 'GraphQL::Type::List__WITH__GraphQL::Role::Output' )},"fields" => {"args" => {"includeDeprecated" => {"default_value" => 0,"type" => {}}},"resolve" => sub { ;},"type" => bless( {"of" => bless( {"list" => {},"of" => bless( {"_fields_deprecation_applied" => 1,"_fields_resolved" => 1,"_interfaces_resolved" => 1,"description" => "Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.","fields" => {"args" => {"resolve" => sub { ;},"type" => {}},"deprecationReason" => {"resolve" => sub { ;},"type" => {}},"description" => {"type" => {}},"isDeprecated" => {"resolve" => sub { ;},"type" => {}},"name" => {"type" => {}},"type" => {"type" => {}}},"name" => "__Field","non_null" => {}}, 'GraphQL::Type::Object' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )}, 'GraphQL::Type::List__WITH__GraphQL::Role::Output' )},"inputFields" => {"resolve" => sub { ;},"type" => {}},"interfaces" => {"resolve" => sub { ;},"type" => {}},"kind" => {"resolve" => sub { ;},"type" => bless( {"of" => bless( {"_fields_deprecation_applied" => 1,"description" => "An enum describing what kind of type a given `__Type` is.","name" => "__TypeKind","non_null" => {},"values" => {"ENUM" => {"description" => "Indicates this type is an enum. `enumValues` is a valid field.","value" => "ENUM"},"INPUT_OBJECT" => {"description" => "Indicates this type is an input object. `inputFields` is a valid field.","value" => "INPUT_OBJECT"},"INTERFACE" => {"description" => "Indicates this type is an interface. `fields` and `possibleTypes` are valid fields.","value" => "INTERFACE"},"LIST" => {"description" => "Indicates this type is a list. `ofType` is a valid field.","value" => "LIST"},"NON_NULL" => {"description" => "Indicates this type is a non-null. `ofType` is a valid field.","value" => "NON_NULL"},"OBJECT" => {"description" => "Indicates this type is an object. `fields` and `interfaces` are valid fields.","value" => "OBJECT"},"SCALAR" => {"description" => "Indicates this type is a scalar.","value" => "SCALAR"},"UNION" => {"description" => "Indicates this type is a union. `possibleTypes` is a valid field.","value" => "UNION"}}}, 'GraphQL::Type::Enum' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Input__AND__GraphQL::Role::Output' )},"name" => {"resolve" => sub { ;},"type" => {}},"ofType" => {"resolve" => sub { ;},"type" => {}},"possibleTypes" => {"resolve" => sub { ;},"type" => {}}},"name" => "__Type","non_null" => {}}, 'GraphQL::Type::Object' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )}},"name" => "__InputValue","non_null" => {}}, 'GraphQL::Type::Object' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )}, 'GraphQL::Type::List__WITH__GraphQL::Role::Output' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )},"description" => {"resolve" => sub { ;},"type" => {}},"locations" => {"resolve" => sub { ;},"type" => bless( {"of" => bless( {"non_null" => {},"of" => bless( {"list" => {},"of" => bless( {"_fields_deprecation_applied" => 1,"description" => "A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.","name" => "__DirectiveLocation","non_null" => {},"values" => {"ARGUMENT_DEFINITION" => {"description" => "Location adjacent to an argument definition.","value" => "ARGUMENT_DEFINITION"},"ENUM" => {"description" => "Location adjacent to an enum definition.","value" => "ENUM"},"ENUM_VALUE" => {"description" => "Location adjacent to an enum value definition.","value" => "ENUM_VALUE"},"FIELD" => {"description" => "Location adjacent to a field.","value" => "FIELD"},"FIELD_DEFINITION" => {"description" => "Location adjacent to a field definition.","value" => "FIELD_DEFINITION"},"FRAGMENT_DEFINITION" => {"description" => "Location adjacent to a fragment definition.","value" => "FRAGMENT_DEFINITION"},"FRAGMENT_SPREAD" => {"description" => "Location adjacent to a fragment spread.","value" => "FRAGMENT_SPREAD"},"INLINE_FRAGMENT" => {"description" => "Location adjacent to an inline fragment.","value" => "INLINE_FRAGMENT"},"INPUT_FIELD_DEFINITION" => {"description" => "Location adjacent to an input object field definition.","value" => "INPUT_FIELD_DEFINITION"},"INPUT_OBJECT" => {"description" => "Location adjacent to an input object type definition.","value" => "INPUT_OBJECT"},"INTERFACE" => {"description" => "Location adjacent to an interface definition.","value" => "INTERFACE"},"MUTATION" => {"description" => "Location adjacent to a mutation operation.","value" => "MUTATION"},"OBJECT" => {"description" => "Location adjacent to an object type definition.","value" => "OBJECT"},"QUERY" => {"description" => "Location adjacent to a query operation.","value" => "QUERY"},"SCALAR" => {"description" => "Location adjacent to a scalar definition.","value" => "SCALAR"},"SCHEMA" => {"description" => "Location adjacent to a schema definition.","value" => "SCHEMA"},"SUBSCRIPTION" => {"description" => "Location adjacent to a subscription operation.","value" => "SUBSCRIPTION"},"UNION" => {"description" => "Location adjacent to a union definition.","value" => "UNION"}}}, 'GraphQL::Type::Enum' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Input__AND__GraphQL::Role::Output' )}, 'GraphQL::Type::List__WITH__GraphQL::Role::Input__AND__GraphQL::Role::Output' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Input__AND__GraphQL::Role::Output' )},"name" => {"resolve" => sub { ;},"type" => {}}},"name" => "__Directive","non_null" => {}}, 'GraphQL::Type::Object' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )}, 'GraphQL::Type::List__WITH__GraphQL::Role::Output' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )},"mutationType" => {"description" => "If this server supports mutation, the type that mutation operations will be rooted at.","resolve" => sub { ;},"type" => {}},"queryType" => {"description" => "The type that query operations will be rooted at.","resolve" => sub { ;},"type" => {}},"subscriptionType" => {"description" => "If this server support subscription, the type that subscription operations will be rooted at.","resolve" => sub { ;},"type" => {}},"types" => {"description" => "A list of all types supported by this server.","resolve" => sub { ;},"type" => {}}},"name" => "__Schema","non_null" => {}}, 'GraphQL::Type::Object' )}, 'GraphQL::Type::NonNull__WITH__GraphQL::Role::Output' )},"__type" => {"args" => {"name" => {"type" => {}}},"description" => "Request the type information of a single type.","name" => "__type","resolve" => sub { ;},"type" => {}}};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"list"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"list"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"}{"non_null"}{"of"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"description"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"name"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"}{"non_null"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"list"}{"non_null"}{"of"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"list"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"list"}{"of"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"description"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"args"}{"includeDeprecated"}{"type"}{"non_null"}{"of"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"args"}{"includeDeprecated"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"}{"of"}{"list"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"}{"of"}{"of"}{"fields"}{"deprecationReason"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"}{"of"}{"of"}{"fields"}{"description"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"}{"of"}{"of"}{"fields"}{"isDeprecated"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"args"}{"includeDeprecated"}{"type"}{"non_null"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"}{"of"}{"of"}{"fields"}{"name"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"}{"non_null"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"}{"of"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"args"}{"includeDeprecated"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"args"}{"includeDeprecated"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"list"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"of"}{"fields"}{"args"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"of"}{"fields"}{"deprecationReason"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"of"}{"fields"}{"description"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"of"}{"fields"}{"isDeprecated"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"enumValues"}{"args"}{"includeDeprecated"}{"type"}{"non_null"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"of"}{"fields"}{"name"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"}{"non_null"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"of"}{"fields"}{"type"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"fields"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"inputFields"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"interfaces"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"list"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"kind"}{"type"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"kind"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"name"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"ofType"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"fields"}{"possibleTypes"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"list"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"description"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"locations"}{"type"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"locations"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"locations"}{"type"}{"of"}{"of"}{"list"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"locations"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"locations"}{"type"}{"of"}{"of"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"locations"}{"type"}{"of"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"name"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"}{"non_null"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"non_null"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"mutationType"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"queryType"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"subscriptionType"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"};$v->{"__schema"}{"type"}{"of"}{"fields"}{"types"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"list"}{"non_null"};$v->{"__schema"}{"type"}{"of"}{"non_null"} = $v->{"__schema"}{"type"};$v->{"__type"}{"args"}{"name"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"defaultValue"}{"type"}{"non_null"};$v->{"__type"}{"type"} = $v->{"__schema"}{"type"}{"of"}{"fields"}{"directives"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"args"}{"type"}{"of"}{"of"}{"of"}{"fields"}{"type"}{"type"}{"of"}; \$v}->{$field_name} and $parent_type == $schema->query
600 0 1 1 ref $arg_nodes->{$_} eq "SCALAR" and $$variable_values{${$arg_nodes->{$_};}}
610 1 0 1 $variable_values && exists $$variable_values{${$arg_nodes->{$_};}}
0 0 0 ref $arg_nodes->{$_} eq "SCALAR" and not $variable_values && exists $$variable_values{${$arg_nodes->{$_};}}
1416 742 0 ref $arg_nodes->{$_} eq "SCALAR" and not $variable_values && exists $$variable_values{${$arg_nodes->{$_};}} and not defined $arg_defs->{$_}{'default_value'}
622 19 114 2009 $arg_defs->{$_}{'type'}->isa('GraphQL::Type::NonNull') && $arg_defs->{$_}{'type'}->of->isa('GraphQL::Type::Enum')

or 2 conditions

line l !l condition
234 819 173 55 $operation->{"variables"} || {}
251 180 41 $variable_values || {}
3 207 39 $field_resolver || \&GraphQL::Execution::_default_field_resolver
294 328 110 2 $operation->{"operationType"} || "query"

or 3 conditions

line l !l&&r !l&&!r condition
261 235 42 23 $variable_values->{$_} // $opvar->{"default_value"}
338 1 1 1 $field_def->{"resolve"} || $context->{"field_resolver"}
363 233 0 8 $promise_present ||= is_Promise $result
554 1903 16 36 is_Promise $completed or defined $completed->{"data"}
590 67 1028 22 exists $arg_nodes->{$_} || defined $arg_defs->{$_}{'default_value'}