treet
treet
Same issue, after a lot of testing it seems that swagger-typescript-api simply does not work with typescript 4.8.2 (released 16 hours ago). When locking typescript to `4.7.4` (using e.g. yarn...
I had the exact same problem, a workaround is to wrap the order_by value in a list (credits to @Yakimych): Does not work: `order_by: {some_name: asc}` Works: `order_by: [{some_name: asc}]`...
Our current use case is that we want telemetry and logging of all GraphQL requests. Since we're creating multiple servers/schemas we thought we had to add a listener for each...