Deniz

Results 124 comments of Deniz

@patrick91 As I said, I didn't really try very hard :) But I slapped together a simple example which shows where I get stuck: ```py def strawberry_limit(limit=100): def inner(func): def...

If I switch the order of the decorators, I get: ``` "message": "Unknown argument 'limit' on field 'users' of type 'Query'.", ``` Whenever you get the time and strength to...

I think this might be the same issue as #2942 which is more active

It would seem like a bug to me that `-- nix:` is in the default configuration if this is not supported.

I'm also very interested in using this for a Lumen project, so if anyone's figured it out, I'd gladly hear about your experiences using it

I'd love to see this happen as it's not obvious to me how to implement the feature in the current state of the library.

Wouldn't adding something like this be enough? ```py class AtomicNestedCreateMixin(NestedCreateMixin): def save(self, **kwargs): with transaction.atomic(): return super().save(**kwargs) ```

@manast @doublerebel @TomKaltz I don't think this is a duplicate of #363, this is about aborting a running processing job, #363 is about removing a job after a certain number...

@manast Bluebird's cancellable API may or may not work, I haven't managed to get it to work though and there's very little information around about how to implement that with...

@fortmarek Heheh, don't be sad, it's expected! ;) I think I worked my way around this issue by resorting to the now-deprecated way of defining dependencies. This issue was intended...