Skip to content

Tags: rgagnon24/php-graphql-client

Tags

v1.9.2

Toggle v1.9.2's commit message
Prevented users from using "GET" method

- Throwing exception if client is constructed with request method other than "POST"
- Formatted code
- Improved code coverage

v1.9.1

Toggle v1.9.1's commit message
Issue-49: Modified string formatting logic to account for string valu…

…es starting with '$' that are not variables

v1.9

Toggle v1.9's commit message
Added support for PHP8

v1.8

Toggle v1.8's commit message
Added support for setting query field aliases

v1.7

Toggle v1.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Laravel 8 compatibility (mghoneimy#36)

Require guzzle 7 as a dependency to support Laravel 8
- Add dependency on guzzle 7.0.1 alongside guzzle 6
- Add PHP7.4 to travis config

v1.6.1

Toggle v1.6.1's commit message
Issue-34: Removed empty braces added in the selection set when no fie…

…lds are selected

- When selection set is empty an empty string is returned
- Tests were modified to have cases with empty selection sets not show empty braces

v1.6

Toggle v1.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Opening the possibility of injecting a PSR-18 compatible HTTP Client (m…

…ghoneimy#33)

* Opening the possibility of injecting a PSR-18 compatible HTTP Client

* The use of function stream_for() is discouraged

* Dropping $authorizationHeaders property

* README update

* Providing explanation for removing the headers from the options before creating a guzzle instance

v1.5

Toggle v1.5's commit message
v1.5:

- Added support for running multiple queries under the same Query object
- Added support for running multiple queries under the same QueryBuilder object
- Updated tests to cover new functionalities added
- Added examples in the README.md file

v1.4.1

Toggle v1.4.1's commit message

v1.4

Toggle v1.4's commit message
- Add ability to set third parameter in constructor to override Guzzl…

…e httpOptions

- Modified tests to be Windows-friendly