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
其他信息
- 授权协议: Unknown
- 更新时间: 2023-07-12