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   10020 use 5.014;
  18         73  
4 18     18   111 use strict;
  18         46  
  18         416  
5 18     18   96 use warnings;
  18         38  
  18         459  
6 18     18   89 use Moo::Role;
  18         35  
  18         115  
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;