leto icon indicating copy to clipboard operation
leto copied to clipboard

Dart GraphQL server libraries. Utilities, code generator, examples and reference implementation.

Results 14 leto issues
Sort by recently updated
recently updated
newest added

I don't see anything in the README regarding federation. Is that something on the roadmap?

This might be a feature request or a question depending on the feature's state. Can Leto handle multiple GraphQL requests to the endpoint in parallel? Or does the second request...

Hi everyone, Thanks for the amazing work you have been doing. Really like the way this server was built and fact that it can be used in so many configurations....

The resolvers for GraphQLObject fields have a return value of FutureOr but GraphQLType.serialize() and deserialize() have a return type of T. It would be great if GraphQLType could also work...

In a mutation I need to be able to differentiate whether a parameter was passed with a null value or whether the client didn't send it at all. Since Leto...

I need to build an API that uses query parameter names which clash with reserved words in Dart, such as "class" or "extension". Due to this, I need to choose...

Feel free to ignore this one as I almost feel stupid for saying it, but it took me some time to figure this out. The documentation should be updated to...

The documentation mentions to use cached types to deal with cyclic references. However, it lists the "interface" property as part of the first instantiation. If the interface type leads to...

I have a schema that has the following: - A "Resource" is a basic interface type with properties such as "id", "text", etc. - Other types such as "Organization", "Patient",...

Auto-generated code may contain linter warnings. Specifically, when writing a query without any arguments, there will be an "unused local variables" linter warning. Ideally the auto-generated code includes `// ignore_for_file:...