Eloff

Results 11 comments of Eloff

I needed this in more than one place as it turns out, so I implemented it using unsafe. Feel free to use any of this code in the bytes library,...

Just chiming in with my two cents here, I think the most useful for performance tests is to be able to track the results over time, to see what builds...

What's the status on merging this @leafo?

@patrick91 gql.type is just strawberry.type, shouldn't it work normally with the strawberry mypy plugin (enabled from my config I shared)?

I tried again this morning, after rebooting overnight. The error is gone, the reboot fixed it. It wasn't the query at fault here, probably not d1 (directly anyway). There's something...

@panicbit this needs to be addressed, but I think you've got too much on your plate. This library hasn't been updated in a year. I'd be happy to take over...

Getting this warning too with 2.0.0-beta35

data was actually an int for me, and I modified the library as described to work around it. Perhaps I was using the library in a way not intended, but...

No, I no longer have access to the codebase, and we switched away from this library in the end. My gut feeling is the "object tree" in the interface{} was...

For now you can workaround this by constructing and replacing the IN clause yourself: ``` const inClause = userIds .map((userId) => { if (!Number.isInteger(userId)) { throw Error("invalid id, expected an...