Skip to content

Releases: lionixevolve/GraphQLSuiteCRM

Custom Schema Feature

25 Jan 21:49
Compare
Choose a tag to compare
  • 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

25 Jan 20:14
cfde61e
Compare
Choose a tag to compare
  • Parent_case field support for Calls

Bug Fix release

25 Jan 20:02
5903a01
Compare
Choose a tag to compare
  • whoami method was returning null