Michael D. Norman

Results 20 issues of Michael D. Norman

I'm using a ticketing system for some personal project, and the ticket numbers start with a hash `#` and include letters, eg `#7a1310`. The ticket prefix works great. However, the...

Currently, the default introspection query ignores any deprecated arguments for query and mutation inputs. Because they are excluded in the introspection query, the server won't even return them as potential...

When there are errors during uglification, there is no information in the uglifier output to indicate where to look to find the solution. This makes it really tough to troubleshoot...

I have a struct in a base class, eg `MyStruct`: ``` pragma solidity ^0.5.0; contract BaseContract { struct MyStruct { string myField; } } ``` Which I want to construct...

bug

Superclasses cannot be renamed to follow the `Trusted`/`Untrusted` pattern, and they should always be trusted since they are imported and the source is known beforehand. Example: ``` import '@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20.sol'; import...

bug

I have a class that has an `id` field, but I don't want to use it directly. Instead, I want to replace its implementation with a derivative function and type...

Passes test and also confirmed it works with a basic Relay query

Along with #38, it would be great if the schema supported suspendable execute. That way, when using a server that supports coroutines (like ktor with netty), expensive queries and mutations...

**Is your feature request related to a problem? Please describe.** I'd rather not keep multiple complete copies of a custom policy and cors configuration around. So, instead I end up...