gql icon indicating copy to clipboard operation
gql copied to clipboard

Libraries supporting GraphQL in Dart

Results 88 gql issues
Sort by recently updated
recently updated
newest added

Right now, the generated enums are not _"real"_ dart enums, it is a class with `static const`s: ```dart class GMyEnum extends EnumClass { const GMyEnum._(String name) : super(name); static const...

Right now, there is one[ list of reserved names](https://github.com/gql-dart/gql/blob/master/codegen/gql_code_builder/lib/src/common.dart#L8) which get escaped when used as an identifier. This list includes reserved keywords in dart (like `class`) and names which are...

package/gql_code_gen

```bash repeat 20 multipack info | dot -Tsvg -x | md5 ``` outputs ``` 2db5aa6b11b6b4f52e8283f2435d5212 d6156c52000e690a7c3e72e52553b9db 2db5aa6b11b6b4f52e8283f2435d5212 2db5aa6b11b6b4f52e8283f2435d5212 1979929664b2fbc1bce4975000f37ac3 5201338dd5c626e72645bbcedf9ea4bf 5201338dd5c626e72645bbcedf9ea4bf 2db5aa6b11b6b4f52e8283f2435d5212 5201338dd5c626e72645bbcedf9ea4bf 2db5aa6b11b6b4f52e8283f2435d5212 2db5aa6b11b6b4f52e8283f2435d5212 2db5aa6b11b6b4f52e8283f2435d5212 5201338dd5c626e72645bbcedf9ea4bf 5201338dd5c626e72645bbcedf9ea4bf 5201338dd5c626e72645bbcedf9ea4bf 5201338dd5c626e72645bbcedf9ea4bf...

Hello! Thank you for this superb API. My backend is generating a schema that contains this directive declaration: `directive @extends on OBJECT | INTERFACE` I need to remove it or...

Is it possible to add interceptor to gql_link so that I can display queries before it is sent. I know there is some kind of a transformer maybe it can...

documentation
help wanted

Drop `multipack` in favor of `melos`. Publishing should be improved later, but since it's not contributor-facing, it can stay for a bit. Jobs to migrate: - [x] packages - [x]...

## Context I am unable to set a field to `null` by executing a mutation that includes a `null` input field value. I believe I should be able to do...