TSArchghs's mod
TSArchghs's mod
I'd like to work on this. :)
```python def test_check_code_view(self): data = {"text":"print('12312')"} response = self.client.post("/check_code",data=data) ``` returns : ```TypeError: cannot convert dictionary update sequence element #0 to a sequence``` While trying to fix this bug I...
@ethanchewy ``` ERROR: test_check_code_view (__main__.TestViews) ---------------------------------------------------------------------- Traceback (most recent call last): File "tests/test_views.py", line 26, in test_check_code_view response = self.client.post("/check_code",data=data) File "/usr/local/lib/python3.6/dist-packages/werkzeug/test.py", line 840, in post return self.open(*args, **kw) File...
@josephspurrier In django it's triggering an event if something happened to the specified object. For example: If a user was created, --> create userprofile object
Same issue. ``` type Story { id: ID! @unique video: File! @relation(name: "StoryVideoFile") thumbnail: File! @relation(name: "StoryThumbnailFile") } ```
Hi @Enmk, @AndreyAlifanov. I was thinking maybe we could introduce parameters in queries in format: - `{:}` eg: `SELECT * FROM default.numbers WHERE id = {paramId:Int} AND name = {paramName:String}...
@AndreyAlifanov maybe we can introduce parameterized queries with an implementation that makes use of `std::variant`? ``` std::variant params[10] = { 2, "one" }; client.Execute("SELECT id, name FROM default.numbers WHERE id...
I'll work on this.
The web app is not ready yet for usage, I'll try to stick with it this time and finish it since I haven't done much web development in the last...
Btw sorry for taking so long to reply, seems like I missed the email notification.