dalnix / laravel-graphql-generator
Generator of Queries, Types and Mutations for laravel-graphql
Requires
- php: ^7.0
- folklore/graphql: ~1
- laravel/framework: ~5.6.0|~5.7.0
This package is not auto-updated.
Last update: 2025-01-31 15:47:33 UTC
README
Note: work in progress
This package will help you to generate Types, Queries and Mutations for Folkloreatelier/laravel-graphql's package.
Installation
Install composer package
$ composer install dalnix/laravel-graphql-generator
Use following command to generate your Types, Queries or Mutations, files will be created in app/GraphQL/Type, app/GraphQL/Mutation or app/GraphQL/Query. When creating a new Type, all columns of the table in the database will be imported, if you want to remove some fields that should'nt be able to access via GraphQL, edit your Type fields method.
$ php artisan dalnix:graphql:make
Publish config to change your GraphQL schema
$ php artisan vendor:publish
Test your queries or mutations: (app_url)/graphiql/custom (custom is the default laravel graphql generator schema)
Notes
Laravel graphql generator does not generate complete functioning resolve functions for your queries or mutations, you have to manually edit your queries or mutations to be able to return data.
You can't add relations via the command, to do so you must edit your Types in order to be able to make queries with eager loaded relations, see laravel-graphql's documention on eager loading relationships
Todos
- Make it possible to add relations directly in the command
License
AGPL-3.0