PHP code example of adeel3330 / graphql-helper-laravel

1. Go to this page and download the library: Download adeel3330/graphql-helper-laravel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

adeel3330 / graphql-helper-laravel example snippets


namespace App\GraphQL\Resolvers;

use App\Models\User;
use Adeel3330\GraphQLHelper\Base\Resolver;

class CreateUserResolver extends Resolver
{
    public function rules(): array
    {
        return [
            'email' => '

public function rules(): array
{
    return [
        'email' => '

use Adeel3330\GraphQLHelper\Support\GraphQLResponse;

return GraphQLResponse::success($data);

return GraphQLResponse::error('Something went wrong');

// config/graphql-helper.php

return [
    'resolver_namespace' => 'App\\GraphQL\\Resolvers',
];
bash
php artisan make:graphql-resolver CreateUser

app/
└── GraphQL/
    └── Resolvers/
        └── CreateUserResolver.php