.

Results 29 comments of .

So I have to create a twitter account just to use a product I paid for? Kind of dumb ahaha Thanks for the heads up, I guess I don't have...

Hey, sorry I've been quite busy with uni work, if I get some time I'll see if I can add in the ability to set backgrounds.

Sure, it would be nice if there is a way to create, update, delete multiple entries in a single mutation, for example: ``` type Mutation { createUsers(input: [CreateUserInput!]): [User] @createMany...

From my understanding (still fairly limited), the way to currently store multiple database rows is to pass through a stack in mutations each containing a single rows worth of data....

Quick bump, any suggestions for tackling this problem? Thanks

> should the abstract `MutationExecutorDirective` and `ModifyModelExistenceDirective` be adapted to handle multiple models? I would guess yes, perhaps being written to determine it generically or statically based on an abstract...

Quick example I whipped up as proof-of-concept: `@upload` Click to expand ```php class UploadDirective extends BaseDirective { public static function definition(): string { return /** @lang GraphQL */ directiveArgValue('disk', config('filesystems.default'));...

https://lighthouse-php.com/5/concepts/arg-resolvers.html#solution Using the docs as an example, I came up with this solution. It seems a little odd though having to make a db call for a single column to...

Based on my understanding from the docs, the `ArgTransformerDirective` will only transform the value, there's not access to the field name. An example in my case, the field name is...

I made the following class based on the docs but for some reason it's not being called, do I need to register the directive somewhere? ```php class UploadDirective extends BaseDirective...