Tim Joseph Dumol

Results 10 comments of Tim Joseph Dumol

> It was just brought to my attention that there are two other PG operators that start with `#`; JSON path accessors `#>` and `#>>`. sqlfmt is very broken for...

@WesleyBatista I'll edit this repo to point to your fork and archive it, since I haven't used rust in a long time -- thanks!

> Hi @cpsnowden - sorry totally forgot I assigned myself to this. Your proposed fix looks good to me. Feel free to PR it!

I might take a stab at fixing this maybe next week, but as a workaround, you can get this working by adding a `UserPractice` model (so explicitly modeling the join...

Possibly you can explicitly invoke Strawberry's field resolution (it's been a while since I've taken a look, but hopefully it's in the docs, otherwise you can dig into the source),...

Hey @mattalbr -- sorry, been fairly busy recently. I'm not entirely certain what you're trying to achieve, but I believe a PR would help communicate that more effectively, so go...

That's a use case we haven't considered. You can possibly try something like: ``` from dataclasses import make_dataclass @_strawberryMapper.type(schema.User) class User: pass _strawberryMapper.finalize() UserInput = strawberry.input(make_dataclass('UserInput', [], bases=(_strawberryMapper.mapped_types['User'],)) ``` Haven't...

From the trace, you seem to be using a [federated schema](https://strawberry.rocks/docs/guides/federation). The library currently assumes you use a non-federated schema, so you'll encounter issues because it uses the standard `strawberry.type`...

Also can reproduce, on WSL2 (Windows 11) + Ubuntu 20.04, using nerdctl: ``` ❯ nerdctl compose up FATA[0000] cannot find a compose YAML, supported file names: [docker-compose.yml docker-compose.yaml compose.yml compose.yaml]...

> > > > Any plan to have support for SQLAlchemy models? > > > > > > > > > Maybe, but not for v1, we did some work...