limoli
limoli
Any news? I am still getting the same problem.
Thank you very much @chris-ramon :)
@mcicolella Not yet unfortunately!
@posva > Why would you ever need to delete a created route without adding a new one replacing it? > I think you may be interested in #1129 How could...
I just fixed this creating my own **custom scalars**. I will make a public repository if someone is interested.
Very good idea @Fontinalis! This could be a very elegant and fast fix!
I think that there are still some issues about the compatibility between **nullable fields** and this library. I attach some images in order to clarify better. **Expected** `deletedAt: null` DeletedAt...
Since I think that GraphQL library hasn't to handle this case, I will write a **custom scalar** for nullable date times compatible with `null.Time` type.
**The fixed library problem** I discovered that the nullable library had a problem with the **null.Time** text-marshaling. It returned `"null"` instead of an empty string. Now I fixed that and...
**The possible solution** Analyzing the graphql code, I understood how it works and where the "problem" is. In a few words, we should check if the serialized result _is a...