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

NAME

SQL::Translator::Producer::GraphQL - GraphQL schema producer for SQL::Translator

SYNOPSIS

  use SQL::Translator;
  use SQL::Translator::Producer::GraphQL;
  my $t = SQL::Translator->new( parser => '...' );
  $t->producer('GraphQL');
  $t->translate;

DESCRIPTION

This module will produce a GraphQL::Schema from the given SQL::Translator::Schema. It does this by first turning it into a DBIx::Class::Schema using SQL::Translator::Producer::DBIx::Class::File, then passing it to "to_graphql" in GraphQL::Plugin::Convert::DBIC.

ARGUMENTS

Currently none.

DEBUGGING

To debug, set environment variable GRAPHQL_DEBUG to a true value.

AUTHOR

Ed J, <etj at cpan.org>

Based heavily on SQL::Translator::Producer::DBIxSchemaDSL.

LICENSE

Copyright (C) Ed J

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.