logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

GraphQL::Type::Enum - GraphQL enum type

Attributes

       Has "name", "description" from GraphQL::Role::Named.

   values
       Hash-ref mapping value labels to a hash-ref description. Description keys, all optional:

       value
           Perl  value of that  item. If not specified, will be the string name of the value. Integers are often
           useful.

       deprecation_reason
           Reason if deprecated. If supplied, the hash for that value will also have a key "is_deprecated"  with
           a true value.

       description
           Description.

Methods

is_valid
       True if given Perl entity is valid value for this type. Relies on unique stringification of the value.

   BUILD
       Internal method.

perl v5.34.0                                       2022-03-27                           GraphQL::Type::Enum(3pm)

Name

       GraphQL::Type::Enum - GraphQL enum type

Synopsis

         use GraphQL::Type::Enum;
         my %text2value;
         my $type = GraphQL::Type::Enum->new(
           name => 'Enum',
           values => { value1 => {}, value2 => { value => 'yo' } },
         );

See Also