Michael Penick
Michael Penick
When not provided to an insert maybe we could consider auto-generating uuid types for keys. It would provide similar functionality to `uuid()` and `timeuuid()`. The values could then be returned...
Executing queries (not mutations) concurrently is specifically part of the GraphQL spec. As a performance optimization, we can leverage go routines to execute queries concurrently. There's an example in graphql-go...
We could provide an easy to setup authentication system. It could come in the form of configurable HTTP authentication plugins (via `http.Handler`). We could provide configurable authentication providers for different...
If the keyspace name happens to be a CQL keyword e.g `default` or if it is case-sensitive it needs to be wrapped in double quotes and escaped to work properly.