Skip to content

Commit 663875b

Browse files
mpywclaude
andcommitted
fix(examples): remove invalid delay from stupid_todolist mutations
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 8dbb25c commit 663875b

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

examples/stupid_todolist/config.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ mutations:
6767
sql: |
6868
INSERT INTO todos (title) VALUES (:title)
6969
RETURNING id, title, completed, created_at
70-
delay: 500ms
7170
transform:
7271
post: |
7372
response.status = 201;
@@ -80,7 +79,6 @@ mutations:
8079
sql: |
8180
UPDATE todos SET title = :title, completed = :completed WHERE id = :id
8281
RETURNING id, title, completed, created_at
83-
delay: 500ms
8482
transform:
8583
pre: |
8684
return {
@@ -95,7 +93,6 @@ mutations:
9593
method: DELETE
9694
path: /api/todos/{id:[0-9]+}
9795
sql: DELETE FROM todos WHERE id = :id
98-
delay: 500ms
9996
transform:
10097
post: |
10198
response.status = 204;

0 commit comments

Comments
 (0)