Leonardo Losoviz
Leonardo Losoviz
Fix for https://github.com/coenjacobs/mozart/issues/27
I have close to 50 blog posts in my [Hylia site](https://leoloso.com) currently. When I write a new blog post, I first launch the development server with `npm start`, which takes...
Hi Steven, thanks for your plug-in, I'm using it to allow users input @mentions and #hashtags. I will suggest a new functionality to make it work smoother for #hashtags. Right...
I have declared the type of an input to be `[ENUM]`, hence I should be able to query it like this: ```graphql query { someField(input: [enumValue]) { ... } }...
Hi! I'm currently using only the Parser from Youshido, and not the full GraphQL server. I use it to power another GraphQL server in PHP which I'm developing, [GraphQL by...
Fixes #238
Fixes #242
I get the following exception: ``` PHP Fatal error: Uncaught Error: Call to a member function hasDefaultValue() on null in .../vendor/youshido/graphql/src/Execution/Request.php:69 ``` When executing a query which includes a variable,...
In the following query, all directives declared in the ancestor fields are lost, only the ones in the leaf fields are parsed correctly from the AST: ```graphql query { ancestorField...
The [GraphQL spec](https://spec.graphql.org/draft/) is not 100% clear on if an argument that is mandatory can receive a `null` value or not. For instance, in this query, `id` is mandatory, and...