-
I'm following [the documentation on custom scalars from packages](https://www.apollographql.com/docs/graphql-tools/scalars.html#Using-a-package) and trying to add the `JSON` scalar to the grand-stack-…
-
This is how you create a custom scalar now:
```python
import base64
from typing import NewType
import strawberry
Base64 = strawberry.scalar(
NewType("Base64", bytes),
serialize=l…
-
[This code](https://github.com/graphql-rust/graphql-parser/blob/8a759df14ff6a2d97b55bcbccad0a53ce0bee4a6/src/common.rs#L46) says that the spec doesn't have a size for numbers, but [it does](https://sp…
-
I use the GraphQL plugin for intellij suggested by the official docs, but it gives me an error when adding an array to args of `@can`
The message is:
```
'createProperty' uses an illegal …
-
Recently I noticed that Universe GraphQL schema has changed a bit and new `JSON` scalar type as well as a default value were introduced. In the introspection JSON it looks like this:
```json
{
…
-
From your video [MERN Stack & GraphQL - #7 Server-Side Validation](https://www.youtube.com/watch?v=t8qpxmuq8CQ), it seems that you don't approach the subject of using custom scalar types for [validati…
-
# Support JSDoc to Generate Types for GQL Scalars
Note: This is a brief summary of Post: [typed-scalars](https://github.com/nalchevanidze/iris/blob/main/examples/app/examples-iris-app.cabal).
##…
-
Right now you can accept arbitrary metadata using the `JSON` scalar, which is great. But sometimes the json has a specific structure, for example: `JSON[dict[str, int]]` and it would be great if y…
-
The spec makes no statement about what GraphQL input values are valid for a custom `Scalar` value.
-------
Let's take an `IntRange` type for example:
- It always has exactly two `Int!` values: …
-
## What problem does this feature solve?
相关issue https://github.com/ng-alain/ng-alain/issues/1294 https://github.com/ng-alain/delon/pull/1234
虽然新增了`customRequest`配置,但是graphql在应用层调用并不是基本的http请求,这个配…