Download the PHP package glesys/butler-graphql without Composer
On this page you can find all versions of the php package glesys/butler-graphql. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download glesys/butler-graphql
More information about glesys/butler-graphql
Files in glesys/butler-graphql
Package butler-graphql
Short Description An opinionated GraphQL package for Laravel
License MIT
Informations about the package butler-graphql
Butler GraphQL
Butler GraphQL is an opinionated package that makes it quick and easy to provide a GraphQL API using Laravel.
Getting Started
- Install the
glesys/butler-graphql
package.
NOTE: If you're using Laravel < 5.5 or Lumen you need to register Butler\Graphql\ServiceProvider::class
manually.
-
Create a GraphQL schema file. The default location is
app/Http/Graphql/schema.graphql
. -
Create a resolver for the
pendingSignups
query. -
Create a controller with the
Butler\Graphql\Concerns\HandlesGraphqlRequests
trait. -
Add a route for your GraphQL API endpoint.
- Use something like GraphiQL or Insomnia to interact with your GraphQL API.
Digging Deeper
Queries
Query resolvers are represented by classes in the App\Http\Graphql\Queries
namespace. They should be named the same as the query but StudlyCased, i.e. pendingSignups
=> PendingSignups
.
Queries are invoked as a callable so all you need to do is implement the __invoke
method.
The following parameters are passed to all resolving methods:
In addition to return arrayables and objects from the resolving methods you can also return callables that will be invoked with the same set of parameters.
Mutations
Mutation resolvers are represented by simple classes in the App\Http\Graphql\Mutations
namespace.
Technically mutations and queries are the same thing. They can both accept arguments and return types with fields. Separating them are more of a convention than it is a requirement.
In REST, any request might end up causing some side-effects on the server, but by convention it's suggested that one doesn't use GET requests to modify data. GraphQL is similar - technically any query could be implemented to cause a data write. However, it's useful to establish a convention that any operations that cause writes should be sent explicitly via a mutation.
Types
Resolving type fields is just as easy as queries and mutations. Define a simple class in the App\Http\Graphql\Types
namespace and use camelCased method names for fields.
NOTE: If a field name in your GraphQL schema definition match the key (for arrayables) or property (for objects) of your source object, you don't need to define a resolver method for that field.
Interfaces
Butler GraphQL supports the use of interfaces in your schema but needs a little bit of help to be able to know what type to use for resolving fields.
The easiest way to tell Butler GraphQL what type to use is to provide a __typename
key or property in your data. For example:
You can also use the resolveTypeFor[Field]
in your parent's resolver to dynamically decide what type to use:
For queries and mutations you only have to define a resolveType
method:
If none of the above are available Butler GraphQL will resort to the base class name of the data if it's an object.
N+1 and the Data Loader
Butler GraphQL includes a simple data loader to prevent n+1 issues when loading nested data. It's available in $context['loader']
and really easy to use:
NOTE: You can provide a default value as the second argument to the loader factory. This can be useful when you know some Articles might not have any Comments, like in the example above. Defaults to null
.
Shared Data Loaders
If you have multiple resolvers working with the same underlying data you don't need to duplicate your code or deal with extra round trips to the database.
All you have to do is to define a separate loader function and reuse it in your resolvers:
Butler GraphQL will make sure that loadComments
is only called once.
If you don't want to use Closure::fromCallable(...)
you can change the accessibility of loadComments
to public
.
Splitting a Large Schema File Into Multiple Files
Butler GraphQL lets you easily split certain parts of your GraphQL schema file to separate files.
schema.graphql
schema-user-attributes.graphql
NOTE: A base schema is always required and it's recommended to stay away from multiple levels of extensions.
Customize
There's no real need to configure Butler GraphQL. It's designed with convention over configuration in mind and should be ready to go without any configuration.
If you want to override any of the available settings you can publish the configuration file using or just use the environment variables listed below.
Change the Schema Location and Namespaces
BUTLER_GRAPHQL_SCHEMA
– Defaults toapp_path('Http/Graphql/schema.graphql')
.BUTLER_GRAPHQL_NAMESPACE
– Defaults to'App\\Http\\Graphql\\'
.
Change the Path and Pattern for Partial Schema Files
BUTLER_GRAPHQL_SCHEMA_EXTENSIONS_PATH
– Defaults toapp_path('Http/Graphql/')
.BUTLER_GRAPHQL_SCHEMA_EXTENSIONS_GLOB
– Defaults to'schema-*.graphql'
.
Debugging
BUTLER_GRAPHQL_INCLUDE_DEBUG_MESSAGE
– Set totrue
to include the real error message in error responses. Defaults tofalse
.BUTLER_GRAPHQL_INCLUDE_TRACE
– Set totrue
to include stack traces in error responses. Defaults tofalse
.
Debugbar
Butler GraphQL has support for automatically decorating responses with additional debug information when using laravel-debugbar. Details such as database queries and memory usage will automatically be available in the response if barryvdh/laravel-debugbar is installed.
To install and activate it, simply install barryvdh/laravel-debugbar
as a require-dev
dependency.
When installed, make sure that APP_DEBUG
is set to true
, that's it.
Customizing what data to collect and include in the response is easily done by copying the default config file to config/debugbar.php
and adjust as needed.
Authorization
If you need to authorize GraphQL request you can use the beforeExecutionHook
method to inspect the schema and query and implement your authorization logic there.
How To Contribute
Development happens at GitHub; any typical workflow using Pull Requests are welcome. In the same spirit, we use the GitHub issue tracker for all reports (regardless of the nature of the report, feature request, bugs, etc.).
All changes are supposed to be covered by unit tests, if testing is impossible or very unpractical that warrants a discussion in the comments section of the pull request.
Code standard
As the library is intended for use in Laravel applications we encourage code standard to follow upstream Laravel practices - in short that would mean PSR-2 and PSR-4.
All versions of butler-graphql with dependencies
amphp/amp Version ^2.5
illuminate/support Version ^11.0
webonyx/graphql-php Version ^14.3.0