Changes for version 0.32
- metadata and test updates
- unescape string literals - thanks @chazmcgarvey
- add block strings - thanks @chazmcgarvey
- update SDL parsing to current graphql-js, including empty defs of most types
- make to_doc produce new-style descriptions while from_doc still understands old, so can convert
Modules
- GraphQL - Perl implementation of GraphQL
- GraphQL::Debug - debug GraphQL
- GraphQL::Directive - GraphQL directive
- GraphQL::Error - GraphQL error object
- GraphQL::Execution - Execute GraphQL queries
- GraphQL::Introspection - Perl implementation of GraphQL
- GraphQL::Language::Grammar - GraphQL grammar
- GraphQL::Language::Parser - GraphQL Pegex parser
- GraphQL::Language::Receiver - GraphQL Pegex AST constructor
- GraphQL::Plugin::Convert - GraphQL plugin API abstract class
- GraphQL::Plugin::Convert::Test - GraphQL plugin test class
- GraphQL::Role::Abstract - GraphQL object role
- GraphQL::Role::Composite - GraphQL object role
- GraphQL::Role::FieldDeprecation - object role implementing deprecation of fields
- GraphQL::Role::FieldsEither - GraphQL object role with code common to all fields
- GraphQL::Role::FieldsInput - GraphQL object role implementing input fields
- GraphQL::Role::FieldsOutput - GraphQL object role implementing output fields
- GraphQL::Role::HashMappable - GraphQL object role
- GraphQL::Role::Input - GraphQL object role
- GraphQL::Role::Leaf - GraphQL "leaf" object role
- GraphQL::Role::Listable - GraphQL object role
- GraphQL::Role::Named - GraphQL "named" object role
- GraphQL::Role::Nullable - GraphQL object role
- GraphQL::Role::Output - GraphQL "output" object role
- GraphQL::Schema - GraphQL schema object
- GraphQL::Subscription - Perl implementation
- GraphQL::Type - GraphQL type object
- GraphQL::Type::Enum - GraphQL enum type
- GraphQL::Type::InputObject - GraphQL input object type
- GraphQL::Type::Interface - GraphQL interface type
- GraphQL::Type::Library - GraphQL type library
- GraphQL::Type::List - GraphQL type that is a list of another type
- GraphQL::Type::NonNull - GraphQL type that is a non-null version of another type
- GraphQL::Type::Object - GraphQL object type
- GraphQL::Type::Scalar - GraphQL scalar type
- GraphQL::Type::Union - GraphQL union type
- GraphQL::Validation - Perl implementation