graphqlite icon indicating copy to clipboard operation
graphqlite copied to clipboard

Use PHP Attributes/Annotations to declare your GraphQL API

Results 58 graphqlite issues
Sort by recently updated
recently updated
newest added
trafficstars

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.4.0 to 4.4.1. Release notes Sourced from JamesIves/github-pages-deploy-action's releases. v4.4.1 What's Changed The action now fully runs on Node 16. (Thank you @​nickmccurdy) Changelog Bump eslint-plugin-jest from...

dependencies
github_actions

Fixes deprecations, AbstractQueryProviderTest renamed because Test suffix produces warning in file with no tests

Hey :) So since the changes to loading classes, we can now use a broader namespaces (like `App`) instead of specifying only specific namespaces containing GraphQLite related classes. This means...

Hey Currently constructor promoted properties' default values are ignored, because `ReflectionClass::getDefaultProperties()` does not return default values from promoted props. This fixes it, so the behaviour matches regular properties.

Having an example as actual code rather than as out-of-context snippets inside a text file means that we can run the code, and ensure that the examples we are giving...

Add psr-15 example to examples folder This example is broken and I don't know why (maybe somebody who knows what they are doing can explain?). But at least now we...

Make the "smallest working example" actually work, see #553 This example had implicit-and-undocumented dependencies on composer.json, and explicit-but-unexplained dependencies on "a container" and "a cache", leaving the installation and configuring...

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4.0.1 to 4.1.0. Release notes Sourced from codecov/codecov-action's releases. v4.1.0 What's Changed fix: set safe directory by @​thomasrockhu-codecov in codecov/codecov-action#1304 build(deps): bump github/codeql-action from 3.24.3 to 3.24.5...

dependencies
github_actions

I am getting error when trying to use Security attribute on extended type class. I have mutation class ``` #[Type] final class RealtyMuation { // some methods } ``` Then...

Turns out you cannot query for field starting with `set` when function is declared like this: ```php #[Graph\Field] public function settings(): string ``` You get `Cannot query field "settings" on...