Skip to content

Commit dcfdc40

Browse files
authored
Update how-to-use-stored-procedures-triggers-udfs.md
Fix python-sdk post-trigger invoke example
1 parent f4b1f70 commit dcfdc40

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

articles/cosmos-db/how-to-use-stored-procedures-triggers-udfs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ The following code shows how to call a post-trigger using the Python SDK:
563563
```python
564564
item = {'category': 'Personal', 'name': 'Groceries',
565565
'description': 'Pick up strawberries', 'isComplete': False}
566-
container.create_item(item, pre_trigger_include='trgPreValidateToDoItemTimestamp')
566+
container.create_item(item, post_trigger_include='trgPreValidateToDoItemTimestamp')
567567
```
568568

569569
---

0 commit comments

Comments
 (0)