GraphQL::Plugin::Convert(3pm) | User Contributed Perl Documentation | GraphQL::Plugin::Convert(3pm) |
GraphQL::Plugin::Convert - GraphQL plugin API abstract class
package GraphQL::Plugin::Convert::DBIC; use Moo; extends qw(GraphQL::Plugin::Convert); # ... package main; use Mojolicious::Lite; use Schema; use GraphQL::Plugin::Convert::DBIC; helper db => sub { Schema->connect('dbi:SQLite:test.db') }; my $converted = GraphQL::Plugin::Convert::DBIC->to_graphql(sub { app->db }); plugin GraphQL => { map { $_ => $converted->{$_} } qw(schema resolver root_value subscribe_resolver) }; # OR, for knowledgeable consumers of GraphQL::Plugin::Convert APIs: package main; use Mojolicious::Lite; use Schema; helper db => sub { Schema->connect('dbi:SQLite:test.db') }; plugin GraphQL => { convert => [ 'DBIC', sub { app->db } ] };
Abstract class for other GraphQL type classes to inherit from and implement.
When called with suitable values (as defined by the implementing class), will return a hash-ref with these keys:
When called with a hash-ref shaped as above, with at least a "schema" key with a GraphQL::Schema, returns some value(s). Optional to implement. If the plugin does implement this, allows conversion from a GraphQL schema to that plugin's domain.
2022-03-27 | perl v5.34.0 |