Lauri Hintsala

Results 38 comments of Lauri Hintsala

@pgoy-dod , does the change proposed by @LucidDan fix it? We really should better job here and raise more descriptive error message.

Thanks for your feedback. I agree with you that it would be nice to have possibility to define which lookups to include to your filter. I'm not sure yet how...

We have a test case for `auto` type in filters. See https://github.com/strawberry-graphql/strawberry-graphql-django/blob/main/tests/filters/test_filters.py#L12-L15 Could you share the code which is failing?

@uroybd, nice! Would you like to contribute, add test and create a pull request? :)

Implementation looks good to me. Could add test cases for new types?

I left my previous comment too early. Tests failed. This adds new dependency but by default we do not want to depend on gdal. I propose to change the implementation...

We haven't looked at `GenericRelation` which means that it is not supported yet. Would you like to contribute? :)

We do not support Django forms yet. That's very interesting idea. One option would be to provide validation information as a separate object. We are currently designing the API and...

Both `update` and `delete` mutations require `List` type. See example project. https://github.com/strawberry-graphql/strawberry-graphql-django/blob/main/examples/django/app/schema.py#L39-L40 Following should work. The reason for that is that both of these mutations may update or delete multiple...

@gersmann, that's very good question. You need to add filters for that purpose. See filtering chapter from our docs https://github.com/strawberry-graphql/strawberry-graphql-django/blob/main/docs/references/mutations.md After that you can update data for filtered set. ```...