-
### What happened?
When running an introspection query against a GraphQL schema implemented with gqlgen, I receive the following (snippet of the full response):
```
...
{
"description": "…
-
I am having trouble getting a custom scalar to work properly. Since there does not appear to be first-class support for custom scalars in neither microprofile-graphql nor in smallrye-graphql I attempt…
-
Given the following directive in a schema:
```graphql
scalar JSON
"Custom Annotation"
directive @annotate(
name: String!
inputs: JSON
) repeatable on OBJECT | FIELD_DEFINITION | INPUT_OBJ…
-
### Which packages are impacted by your issue?
_No response_
### Describe the bug
https://github.com/dotansimha/graphql-code-generator/pull/9375 broke my code in angular 16.
I have a quer…
-
If a query is passed any other value (for example: a string) where an Upload scalar is expected, the `IDocumentExecutor` throws an unhandled `ArgumentException` exception. The problem is that the Uplo…
-
Using the CLI option `--scalar`, it is possible to set the Typescript type of custom scalars. However, that only modifies the generated interfaces. The actual value of the scalar is unchanged.
For …
-
**Describe the bug**
Upgrading `typescript-operations` from v1.x to v2.x causes custom types in codegen to be generated as Maybe wrapped around them.
Downgrading with this diff "solves" the prob…
-
Hi, I have been trying a work-around when dealing with integer values for ranges above `int32`. I've looked at [Scalars](https://docs.github.com/en/graphql/reference/scalars) for the BigInt type but I…
-
## Describe the Bug
See this toy example schema with the newly detected type error in comments:
```python
Slug = strawberry.scalar(
str,
serialize=lambda x: x,
parse_value=lambda…
kkom updated
10 months ago
-
We are using Typescript on our application, and using the redwood generated types for the graphQL interfaces is extremely handy.
For a sdl type such as
```
input CreateMilestoneInput {
…