The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

GraphQL::Plugin::Convert::Test - GraphQL plugin test class

SYNOPSIS

  package main;
  use GraphQL::Plugin::Convert::Test;
  use GraphQL::Execution qw(execute);
  my $converted = GraphQL::Plugin::Convert::Test->to_graphql;
  print execute(
    $converted->{schema}, '{helloWorld}', $converted->{root_value}
  )->{data}{helloWorld}, "\n";

DESCRIPTION

Example class to allow testing of convert plugin consumers.

METHODS

Produces a schema and root value that defines the top-level query field helloWorld. That will return the string Hello, world!.

to_graphql(@values)

Ignores all inputs.