jsus

Results 20 comments of jsus

Would this support composing abstractions in a way rust does: ```rust trait A: B { // A supersets trait B fn method(arg: C) -> void // Variable arg must implement...

It would be extremely handy to specify at least a basic unit like classic `html { font-size: 8px }` used for `rem`-based grid. I'm not sure about doing it with...

The algorithm is still a bit incomplete even in JS, but the binary structure is more or less stable so I'll check it out and if it's applicable will add...

I have the following situation: ```graphql query A { rootField { field { subfield { ... } } } } ``` where `subfield` is an array Mutation that returns none...

@dariocravero It's tracked here https://github.com/hasura/graphql-engine/issues/3772

Will this allow doing ```rust msg.subOneOfMsg.descriptor().get_name() ``` ?

Our usecase is to serialize the enum's name to relational database in a manner similar to [internally tagged enums](https://serde.rs/enum-representations.html#internally-tagged) and store it as a separate column

```sql create table foos { bar integer, baz_type text, baz_value jsonb }; insert into foos(bar, baz_type, baz_value) values(1, 'qux', 'test'); ``` This way one can achieve proper indexing by `baz_type`...

I would recommend also an ability to return custom GraphQL type. There is a certain tendency in the GraphQL developemnet to disregard error responses because they're problematic to add strict...