graphql-laravel icon indicating copy to clipboard operation
graphql-laravel copied to clipboard

Laravel wrapper for Facebook's GraphQL

Results 10 graphql-laravel issues
Sort by recently updated
recently updated
newest added

Correction find schema when prefix contains parameters ## Summary I add the ability to set custom parameters to route prefix, like: ```php 'prefix' => 'graphql/{game_slug}', ``` This fix use $request->route()->uri()...

## Summary This makes the fields of the Query and Mutation root types lazy, so they aren't all initialized anymore on every request. Names are required in the schema config...

## Summary This PR implements the lazy root types, supported since 15.6.0 of webonyx/graphql-php. I see some performance improvements by this change, tested in a project with several queries and...

## Summary Hello, In this pull request, I have added the `FieldType` class. In the current version, there are instances where incorrect value types, incorrect keys, etc., are defined. Additionally,...

### Versions: - graphql-laravel Version: 8.3.0 - Laravel Version: 9.10 - PHP Version: 8.1.8 ### Description: Rules don't work properly when they are in a type inside of a list....

bug

I was looking into this https://github.com/rebing/graphql-laravel/issues/602 and fell over this bug. With this query: ``` query ($proId: Int, $proId2: Int) { test2 { name alias1: profile(profileId: $proId2) { contentType }...

bug
help wanted
SelectFields

### Versions: - graphql-laravel Version: 7.2.0 - Laravel Version: 8.42.1 - PHP Version: 8.0.5 ### Description: Custom query in relation field is not being triggered while using Union type. ###...

bug
SelectFields

### Versions: - graphql-laravel Version: 5.1.4 - Laravel Version: 8.0 - PHP Version: 7.4 ### Description: The generated SQL for a group by on an interface would raise an error...

bug
SelectFields

### Versions: - graphql-laravel Version: 9.5.0 - Laravel Version: 11.15.0 - PHP Version: 8.3 ### Description: In Laravel 11, custom queries are not being loaded when defined in a graphql-laravel...

bug

## Summary - Added initialization of `$originalInput` property in the `init` method of `OperationParams` class. - This fix addresses the issue: "Typed property GraphQL\Server\OperationParams::$originalInput must not be accessed before initialization"....