Taybin Rutkin

Results 65 comments of Taybin Rutkin

The documentation says if Body is a list, it needs to be flattened.

Use the updated version at https://github.com/faust-streaming/mode/, available on pypi as mode-streaming.

@afausti I see you're using the memory storage for Tables. Do you think you'd need to use a StatefulSet instead of a Deployment if you switched to rocksdb?

I've run into this as well, with other characters such as @ in the password. I thought this was a Starlette issue and opened up this issue: https://github.com/encode/starlette/issues/662, but it...

One thing that might be useful is support for urlencoding in Starlette.Configuration, somewhere. No idea what it'd look like yet. I know that doesn't solve the issue for databases, but...

I put a proof of concept in encode/starlette#695.

I'm using version 2.0.1. With typescript 4.7, which might be relevant.

I think the issue is that the [apollo documentation](https://www.apollographql.com/docs/apollo-server/data/data-sources/#adding-data-sources-to-apollo-server) suggests creating a new DataSource on every call, like: ```typescript const server = new ApolloServer({ typeDefs, resolvers, cache, context, dataSources: ()...