File Coverage

blib/lib/GraphQL/Role/Output.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::Output;
2              
3 18     18   8976 use 5.014;
  18         65  
4 18     18   114 use strict;
  18         43  
  18         349  
5 18     18   99 use warnings;
  18         35  
  18         427  
6 18     18   100 use Moo::Role;
  18         40  
  18         99  
7              
8             our $VERSION = '0.02';
9              
10             =head1 NAME
11              
12             GraphQL::Role::Output - GraphQL "output" object role
13              
14             =head1 SYNOPSIS
15              
16             with qw(GraphQL::Role::Output);
17              
18             # or runtime
19             Role::Tiny->apply_roles_to_object($foo, qw(GraphQL::Role::Output));
20              
21             =head1 DESCRIPTION
22              
23             Allows type constraints for output objects.
24              
25             =cut
26              
27             __PACKAGE__->meta->make_immutable();
28              
29             1;