Releases: lionixevolve/GraphQLSuiteCRM
Releases · lionixevolve/GraphQLSuiteCRM
Custom Schema Feature
- If you need to extend the custom schema you can create a file
graphql/CustomSuiteCRMSchema.php
and it will be included_once when defining the Schema. This is an example taken from a real project
<?php
require_once('Schema/TopicType.php');
require_once('Schema/TopicsListType.php');
$config->getQuery()->addFields([
'topics' => [
'type' => new TopicsListType(),
'args' => argsHelper::entityArgsHelper('lx_topics'),
'resolve' => function ($value, array $args, Youshido\GraphQL\Execution\ResolveInfo $info) {
return $info->getReturnType()->resolve($value, $args, $info);
},
],
]);
New Features
- Parent_case field support for Calls
Bug Fix release
- whoami method was returning null