File Coverage

blib/lib/GraphQL/Role/Input.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package GraphQL::Role::Input;
2              
3 18     18   10847 use 5.014;
  18         67  
4 18     18   99 use strict;
  18         36  
  18         419  
5 18     18   84 use warnings;
  18         40  
  18         477  
6 18     18   80 use Moo::Role;
  18         43  
  18         116  
7              
8             our $VERSION = '0.02';
9              
10             =head1 NAME
11              
12             GraphQL::Role::Input - GraphQL object role
13              
14             =head1 SYNOPSIS
15              
16             with qw(GraphQL::Role::Input);
17              
18             # or runtime
19             Role::Tiny->apply_roles_to_object($foo, qw(GraphQL::Role::Input));
20              
21             =head1 DESCRIPTION
22              
23             Allows type constraints for input objects.
24              
25             =cut
26              
27             __PACKAGE__->meta->make_immutable();
28              
29             1;