leadvertex/plugin-component-api-client

This package is abandoned and no longer maintained. No replacement package was suggested.

LeadVertex plugin API client component

0.6.6 2022-10-24 13:21 UTC

This package is auto-updated.

Last update: 2023-12-01 15:22:22 UTC


README

\Leadvertex\Plugin\Components\ApiClient\ApiClient - component, which accept API endpoint URL and API token, and allow make queries to leadvertex.com GraphQL API. This component use under the hood softonic/graphql-client GraphQL client library

Usage

For example, in your plugin app you can create internationalization class like this

<?php
$client = new \Leadvertex\Plugin\Components\ApiClient\ApiClient('https://cluster.leadvertex.com/companies/1/CRM', 'token here');

/** @var \Softonic\GraphQL\Response $response */
$response = $client->query('query {name, company}');

print_r($response->getData());
print_r($response->getErrors());