table of contents
| GraphQL::Type::InputObject(3pm) | User Contributed Perl Documentation | GraphQL::Type::InputObject(3pm) |
NAME¶
GraphQL::Type::InputObject - GraphQL input object type
SYNOPSIS¶
use GraphQL::Type::InputObject;
my $type = GraphQL::Type::InputObject->new(
name => 'InputObject',
fields => { field_name => { type => $scalar_type, resolve => sub { '' } }},
);
ATTRIBUTES¶
Has "name", "description" from GraphQL::Role::Named. Has "fields" from GraphQL::Role::FieldsInput.
METHODS¶
is_valid¶
True if given Perl hash-ref is a valid value for this type.
uplift¶
Turn given Perl entity into valid value for this type if possible. Applies default values.
| 2022-03-27 | perl v5.34.0 |