您好,登錄后才能下訂單哦!
在 Yii2 中集成 GraphQL,你可以使用 “goetas-webservices/graphql” 這個(gè)擴(kuò)展包。以下是集成步驟:
使用 Composer 安裝 “goetas-webservices/graphql” 擴(kuò)展包:
composer require goetas-webservices/graphql
在 Yii2 項(xiàng)目的配置文件(例如 config/web.php)中,添加 GraphQL 模塊的配置:
'components' => [
// ...
'graphql' => [
'class' => 'GoetasWebservices\GraphQL\GraphQL',
'schema' => [
'class' => 'GoetasWebservices\GraphQL\Schema\Schema',
'document' => file_get_contents(__DIR__ . '/schema.graphql'),
],
],
// ...
],
在項(xiàng)目根目錄下創(chuàng)建一個(gè)名為 “schema.graphql” 的文件,定義你的 GraphQL schema。例如:
type Query {
hello: String
}
在 Yii2 項(xiàng)目的 controllers 目錄下創(chuàng)建一個(gè)名為 “GraphQLController.php” 的文件,添加以下內(nèi)容:
<?php
namespace app\controllers;
use yii\web\Controller;
use GoetasWebservices\GraphQL\Server\GraphQLController as BaseGraphQLController;
use GoetasWebservices\GraphQL\Model\Request as GraphQLRequest;
use GoetasWebservices\GraphQL\Model\Response as GraphQLResponse;
class GraphQLController extends BaseGraphQLController
{
public function actions()
{
return [
'index' => [
'class' => 'actions\IndexAction',
'query' => '{ hello }',
],
];
}
}
在 controllers 目錄下創(chuàng)建一個(gè)名為 “actions” 的文件夾,并在其中創(chuàng)建一個(gè)名為 “IndexAction.php” 的文件,添加以下內(nèi)容:
<?php
namespace app\actions;
use GoetasWebservices\GraphQL\Server\Action\AbstractAction;
use GoetasWebservices\GraphQL\Model\Request as GraphQLRequest;
use GoetasWebservices\GraphQL\Model\Response as GraphQLResponse;
class IndexAction extends AbstractAction
{
public function execute(GraphQLRequest $request, GraphQLResponse $response)
{
$response->setResult([
'hello' => 'Hello, GraphQL!',
]);
}
}
現(xiàn)在你可以通過訪問 “/graphql” 路徑來測(cè)試你的 GraphQL API。你應(yīng)該能看到如下響應(yīng):
{
"data": {
"hello": "Hello, GraphQL!"
}
}
這就是在 Yii2 中集成 GraphQL 的基本步驟。你可以根據(jù)自己的需求進(jìn)一步擴(kuò)展和定制 GraphQL schema 和 controller。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。