line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package GraphQL::Role::Output; |
2
|
|
|
|
|
|
|
|
3
|
18
|
|
|
18
|
|
8888
|
use 5.014; |
|
18
|
|
|
|
|
60
|
|
4
|
18
|
|
|
18
|
|
95
|
use strict; |
|
18
|
|
|
|
|
37
|
|
|
18
|
|
|
|
|
332
|
|
5
|
18
|
|
|
18
|
|
83
|
use warnings; |
|
18
|
|
|
|
|
33
|
|
|
18
|
|
|
|
|
376
|
|
6
|
18
|
|
|
18
|
|
79
|
use Moo::Role; |
|
18
|
|
|
|
|
36
|
|
|
18
|
|
|
|
|
119
|
|
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; |