Andy Vanee
Andy Vanee
I'm not sure if this thread is dead, but I've got this working with GraphiQL with the following minimal patch: https://github.com/andyvanee/graphql-lua/commit/478594100f129641417ec802bde1b0ec0c9597ca Also, I was a bit confused since the only...
I know this is a very old issue, but I thought I'd document this since I had the same issue. You can configure your client to specify the host and...
I don't believe this is resolved yet, and this point wasn't raised: it would be nice to have control over both `height` and `min-height`. In the following screenshot I've done...
I am curious about this too. I am looking at lsqlite3 as well, but LuaSQL seems to have a more familiar interface to me. I would like to see prepared...
I have encountered this issue using EventSource with custom message types as in this tutorial: I am working around this by redefining the types of `EventSource` `addEventListener` and `removeEventListener` to...
Not sure if this issue is considered closed, but it looks like `msw 0.41.0` introduces some breaking change related to GraphQL queries. Maybe it's better pre-1.0 to lock to tested...
> Hey, @andyvanee 👋 To my best knowledge, there shouldn't be any breaking changes to how GraphQL operations are intercepted/mocked. Please, if you experience any issues around that, could you...
I second this, especially as it doesn't match the behaviour of the in-browser FormData.append behaviour, which appears to do string coercion on the value field. The values that are saved...
Yeah, I came across this issue as well and it should be noted that `apiDoc` is the full schema, not just the schema for this route. It wasn't exactly trivial...
I had a similar issue, as the `/signup` route leaves things too open for my use case. Here was my solution, allowing existing users to create new users: ``` ruby...