cynic
cynic copied to clipboard
Output dummy impls on error
Currently if an error happens in a derive macro, no impl will be output. This means you end up with a ton of errors in all the other macros because some trait or other wasn't implemented, which obscures the actual error.
We should update all the derives to put out dummy impls on failure, so this doesn't happen anymore.