Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Commands improvements #1005

Merged
merged 4 commits into from
Mar 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ CHANGELOG
## Changed
- The type resolver is now able to resolve the top level types 'Query',
'Mutation' and 'Subscription'
- Return types were added to all methods of the commands [\#1005 / sforward](https://github.com/rebing/graphql-laravel/pull/1005)

2023-02-18, 8.6.0
-----------------
Expand Down
8 changes: 5 additions & 3 deletions src/Console/EnumMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,26 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:enum')]
class EnumMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:enum {name}';
protected $description = 'Create a new GraphQL enum class';
protected $type = 'Enum';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/enum.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Enums';
}

protected function buildClass($name)
protected function buildClass($name): string
{
$stub = parent::buildClass($name);

Expand Down
6 changes: 4 additions & 2 deletions src/Console/ExecutionMiddlewareMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:executionMiddleware')]
class ExecutionMiddlewareMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:executionMiddleware {name}';
protected $description = 'Create a new GraphQL execution middleware class';
protected $type = 'ExecutionMiddleware';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/executionMiddleware.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Middleware\Execution';
}
Expand Down
6 changes: 4 additions & 2 deletions src/Console/FieldMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:field')]
class FieldMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:field {name}';
protected $description = 'Create a new GraphQL field class';
protected $type = 'Field';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/field.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Fields';
}
Expand Down
8 changes: 5 additions & 3 deletions src/Console/InputMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,26 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:input')]
class InputMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:input {name}';
protected $description = 'Create a new GraphQL input class';
protected $type = 'Input';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/input.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Inputs';
}

protected function buildClass($name)
protected function buildClass($name): string
{
$stub = parent::buildClass($name);

Expand Down
8 changes: 5 additions & 3 deletions src/Console/InterfaceMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,26 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:interface')]
class InterfaceMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:interface {name}';
protected $description = 'Create a new GraphQL interface class';
protected $type = 'Interface';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/interface.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Interfaces';
}

protected function buildClass($name)
protected function buildClass($name): string
{
$stub = parent::buildClass($name);

Expand Down
6 changes: 4 additions & 2 deletions src/Console/MiddlewareMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:middleware')]
class MiddlewareMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:middleware {name}';
protected $description = 'Create a new GraphQL middleware class';
protected $type = 'Middleware';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/middleware.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Middleware';
}
Expand Down
8 changes: 5 additions & 3 deletions src/Console/MutationMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,26 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:mutation')]
class MutationMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:mutation {name}';
protected $description = 'Create a new GraphQL mutation class';
protected $type = 'Mutation';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/mutation.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Mutations';
}

protected function buildClass($name)
protected function buildClass($name): string
{
$stub = parent::buildClass($name);

Expand Down
8 changes: 5 additions & 3 deletions src/Console/QueryMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,26 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:query')]
class QueryMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:query {name}';
protected $description = 'Create a new GraphQL query class';
protected $type = 'Query';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/query.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Queries';
}

protected function buildClass($name)
protected function buildClass($name): string
{
$stub = parent::buildClass($name);

Expand Down
6 changes: 4 additions & 2 deletions src/Console/ScalarMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:scalar')]
class ScalarMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:scalar {name}';
protected $description = 'Create a new GraphQL scalar class';
protected $type = 'Scalar';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/scalar.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Scalars';
}
Expand Down
6 changes: 4 additions & 2 deletions src/Console/SchemaConfigMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,21 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:schemaConfig')]
class SchemaConfigMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:schemaConfig {name}';
protected $description = 'Create a new GraphQL schema configuration class';
protected $type = 'Schema';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/schemaConfig.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Schemas';
}
Expand Down
8 changes: 5 additions & 3 deletions src/Console/TypeMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,26 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:type')]
class TypeMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:type {name}';
protected $description = 'Create a new GraphQL type class';
protected $type = 'Type';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/type.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Types';
}

protected function buildClass($name)
protected function buildClass($name): string
{
$stub = parent::buildClass($name);

Expand Down
8 changes: 5 additions & 3 deletions src/Console/UnionMakeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,26 @@
namespace Rebing\GraphQL\Console;

use Illuminate\Console\GeneratorCommand;
use Symfony\Component\Console\Attribute\AsCommand;

#[AsCommand('make:graphql:union')]
class UnionMakeCommand extends GeneratorCommand
{
protected $signature = 'make:graphql:union {name}';
protected $description = 'Create a new GraphQL union class';
protected $type = 'Union';

protected function getStub()
protected function getStub(): string
{
return __DIR__ . '/stubs/union.stub';
}

protected function getDefaultNamespace($rootNamespace)
protected function getDefaultNamespace($rootNamespace): string
{
return $rootNamespace . '\GraphQL\Unions';
}

protected function buildClass($name)
protected function buildClass($name): string
{
$stub = parent::buildClass($name);

Expand Down
26 changes: 14 additions & 12 deletions src/GraphQLServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,17 +130,19 @@ public function registerGraphQL(): void
*/
public function registerConsole(): void
{
$this->commands(EnumMakeCommand::class);
$this->commands(FieldMakeCommand::class);
$this->commands(InputMakeCommand::class);
$this->commands(InterfaceMakeCommand::class);
$this->commands(InterfaceMakeCommand::class);
$this->commands(MiddlewareMakeCommand::class);
$this->commands(MutationMakeCommand::class);
$this->commands(QueryMakeCommand::class);
$this->commands(ScalarMakeCommand::class);
$this->commands(SchemaConfigMakeCommand::class);
$this->commands(TypeMakeCommand::class);
$this->commands(UnionMakeCommand::class);
$this->commands([
EnumMakeCommand::class,
FieldMakeCommand::class,
InputMakeCommand::class,
InterfaceMakeCommand::class,
InterfaceMakeCommand::class,
MiddlewareMakeCommand::class,
MutationMakeCommand::class,
QueryMakeCommand::class,
ScalarMakeCommand::class,
SchemaConfigMakeCommand::class,
TypeMakeCommand::class,
UnionMakeCommand::class,
]);
}
}