Daniel Woelfel

Results 13 comments of Daniel Woelfel

Another potential user for Discord: https://github.com/open-sauced/open-sauced/discussions/682 (via https://twitter.com/bdougieYO/status/1440797693358395402)

I've seen this implemented in two ways 1. Temporary chat bubble with typing animation (Messenger, Intercom) 2. Static "Daniel is typing" text (Slack, Whatsapp) I prefer the aesthetics of 2....

Slack puts theirs under the input area, but you don't have any space there right now. Precursor puts it on the line that separates the chat box and I think...

GitHub uses objects as defaultValues a lot in their schema for their orderBy arguments. For example, `Query.securityAdvisories` looks something like: ```graphql securityAdvisories( ... orderBy: GitHubSecurityVulnerabilityOrder = {field: UPDATED_AT, direction: DESC}...

Subscriptions would have one big advantage, in that you could use a normal graphql selection set to describe the query instead of using a string. For example: ```graphql mutation {...

> where `A` defines at least the same fields as `B` ... `B` is a subtype of `A` My use case is a little different than that. In my case,...

> I wonder if this is a use case that can be generalised so it's more broadly applicable -- any thoughts on this? I would prefer adding a general capability...

Sorry for the delay. I tried to write the functions I mentioned, but couldn't figure out a way to do it without an error about types escaping their scope. In...

> I think that the solution to this particular use case should also take into account that a GraphQL response can return both data and errors. We could perhaps do...

> It's true that a list of nullable scalars cannot easily be expressed though, but that also seems like weird use case. Can you elaborate on this, @dwwoelfel? We don't...