Sang-Heon Jeon
Sang-Heon Jeon
I asked same question at springdoc/springdoc-openapi#1757 but they said it is part of swagger-core 🙏
You mean like `latest` api in django orm? See [link](https://docs.djangoproject.com/en/3.0/ref/models/querysets/#latest). It just look aliasing of your alternatives : `Table.all().order_by("-id").limit(1)` If so, I don't think it's urgent.
With docs, the command description of [rm](https://www.nushell.sh/commands/docs/rm.html) is `Remove files and directories`. So this means it behaves like the `rm` or `rmdir` command depending on the situation. With normal shell...
@NotTheDr01ds sorry for late response. My example is created by zsh (version 5.9 x86_64-apple-darwin23.0) And it is currently same with upper comment. ``` > echo $0 -zsh > zsh --version...
Your example is wrong. because tortoise is based on async. instead of `obj = SomeModel.create(nonexistent_field="lol")` use `obj = await SomeModel.create(...)`
After fix example, below logs will come ``` bash File "test.py", line 14, in run_async(run()) File "/storage/tortoise-orm/tortoise/__init__.py", line 636, in run_async loop.run_until_complete(coro) File "/root/.pyenv/versions/3.7.6/lib/python3.7/asyncio/base_events.py", line 583, in run_until_complete return future.result()...
@madnesspie Ah you are right, With your fixed example i found same issue too. Seems like that we are now just ignoring the unexpected fields... @grigi I think raise Exception...
In fact, before reporting this bug, I encountered another similar bug. Due to the company's security issues, I cannot attach entire code. So I tried to reproduce it, but failed....
@shanshin If you need anything, please feel free to tell me 😄 I also have the following questions: Is it a bug that the null checking inside the if statement...
Thanks for answering! If there is anything I can contribute, I am happy to do so 😃