The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package GraphQL::Role::Composite;

use 5.014;
use strict;
use warnings;
use Moo::Role;

our $VERSION = '0.02';

=head1 NAME

GraphQL::Role::Composite - GraphQL object role

=head1 SYNOPSIS

  with qw(GraphQL::Role::Composite);

  # or runtime
  Role::Tiny->apply_roles_to_object($foo, qw(GraphQL::Role::Composite));

=head1 DESCRIPTION

Allows type constraints for composite objects.

=cut

__PACKAGE__->meta->make_immutable();

1;