Skip to content

Commit

Permalink
Add client method
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiu-cristea authored Aug 23, 2023
1 parent 13fb10d commit 6f445b8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use Gitlab\Api\Deployments;
use Gitlab\Api\Environments;
use Gitlab\Api\Events;
use Gitlab\Api\GraphQL;
use Gitlab\Api\Groups;
use Gitlab\Api\GroupsBoards;
use Gitlab\Api\GroupsEpics;
Expand Down Expand Up @@ -407,6 +408,14 @@ public function wiki(): Wiki
return new Wiki($this);
}

/**
* @return GraphQL
*/
public function graphql(): GraphQL
{
return new GraphQL($this);
}

/**
* Authenticate a user for all next requests.
*
Expand Down

0 comments on commit 6f445b8

Please sign in to comment.