mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
20514ab580
There were multiple locations where we were implementing `derive_more::Display` with a fixed format string, mostly of `"Display"`. This means that the `to_string` implementations of those types would just return `"Display"`, which is quite unhelpful. In all cases but one, I was simply able to remove the implementation. In the last case, `QualifiedTypeReference` had a broken implementation. I replaced it with something more meaningful: the type name, followed by a `"!"` if the type is non-nullable. `derive_more` was unable to help me here so I implemented it the old-fashioned way. (I think replacing it with an `enum` could also work.) V3_GIT_ORIGIN_REV_ID: 35cf573d1efab2bba0707b248ae8b74bd535d0ed |
||
---|---|---|
.. | ||
auth | ||
custom-connector | ||
engine | ||
lang-graphql | ||
metadata-resolve | ||
metadata-schema-generator | ||
open-dds | ||
utils |