name2type
In this schema, returns a hash-ref mapping all types' names to their type object.
get_possible_types($abstract_type)
In this schema, get all of either the implementation types (if interface) or possible types (if union) of
the $abstract_type.
is_possible_type($abstract_type,$possible_type)
In this schema, is the given $possible_type either an implementation (if interface) or a possibility (if
union) of the $abstract_type?
assert_object_implements_interface($type,$iface)
In this schema, does the given $type implement interface $iface? If not, throw exception.
from_ast($ast[,\%kind2class])
Class method. Takes AST (array-ref of hash-refs) made by "parse" in GraphQL::Language::Parser and returns
a schema object. Will not be a complete schema since it will have only default resolvers.
If "\%kind2class" is given, it will override the default mapping of SDL keywords to Perl classes. This is
probably most useful for GraphQL::Type::Object. The default is available as %GraphQL::Schema::KIND2CLASS.
E.g.
my $schema = GraphQL::Schema->from_ast(
$doc,
{ %GraphQL::Schema::KIND2CLASS, type => 'GraphQL::Type::Object::DBIC' }
);
Makes available the additional types returned by "registered" in GraphQL::Plugin::Type.
from_doc($doc[,\%kind2class])
Class method. Takes text that is a Schema Definition Language (SDL) (aka Interface Definition Language)
document and returns a schema object. Will not be a complete schema since it will have only default
resolvers.
As of v0.32, this accepts both old-style "meaningful comments" and new-style string values, as field or
type descriptions.
If "\%kind2class" is given, it will override the default mapping of SDL keywords to Perl classes. This is
probably most useful for GraphQL::Type::Object. The default is available as %GraphQL::Schema::KIND2CLASS.
to_doc($doc)
Returns Schema Definition Language (SDL) document that describes this schema object.
As of v0.32, this produces the new-style descriptions that are string values, rather than old-style
"meaningful comments".
As of v0.33, will not return a description of types supplied with the attribute "types". Obviously, by
default this includes types returned by "registered" in GraphQL::Plugin::Type.
name2directive
In this schema, returns a hash-ref mapping all directives' names to their directive object.