定制 wappcode/graphql-basic-client 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

wappcode/graphql-basic-client

最新稳定版本:1.0.2

Composer 安装命令:

composer require wappcode/graphql-basic-client

包简介

README 文档

README

Allows making queries to a graphql API.

Gets an array as result

Requirements

Needs curl extension enabled

Install

composer require wappcode/graphql-basic-client

Use

Query

$client = new GQLClient("http://graphql-api");
        $query = '
        query  {
            users {
            id
            name
            firstname
            lastname
            email
            }
        }
        ';
        $result = $client->execute($query);

Mutation

$client = new GQLClient("http://graphql-api");
	$query = '
	mutation MutationCreateUser($input: UserInput) {
		user: createUser(input: $input) {
          id
		  name
		  firstname
		  lastname
		  email
		}
	  }
	';
	$variables = [
		"input" => [
			"firstname" => "John",
			"lastname" => "Doe",
			"email" => "johndoe@demo.com"
		]
	];
	$headers = [
		"Authorization: Bearer jwt"
	];
	$result = $client->execute($query, $variables, $headers);

统计信息

  • 总下载量: 52
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 3
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2023-07-12