You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Overriding SchemaPrinter to bypass check on Subscriptions.
In Webonyx, the getType() function can return null. In GraphQLite, it throws an error.
This makes using the SchemaPrinter impossible.
We override the SchemaPrinter to stop searching for the "Subscription" type.
Note: this can only work if webonyx/graphql-php#1380 is merged.
Addig a graphqlite:export-schema command
This new Laravel command can be run using
```
./artisan graphqlite:export-schema --output file.schema
```
It will output the content of the Schema to an SDL file.
This can be useful for instance for tools like graphql-codegen.