Skip to content

Commit 2a95fec

Browse files
authored
Merge pull request #35 from mondaycom/feature/michaelim/item-updated-at
item updated_at
2 parents c0a0637 + 5a018a9 commit 2a95fec

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="monday-api-python-sdk", # Required
18-
version="1.5.3", # Required
18+
version="1.5.4", # Required
1919
description="A Python SDK for interacting with Monday's GraphQL API", # Optional
2020
long_description=long_description, # Optional
2121
long_description_content_type="text/markdown", # Optional (see note above)

src/monday_sdk/query_templates.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def get_board_items_first_page_query(
4141
items {
4242
id
4343
name
44+
updated_at
4445
group {
4546
id
4647
title
@@ -66,6 +67,7 @@ def get_board_items_first_page_query(
6667
subitems {
6768
name
6869
id
70+
updated_at
6971
parent_item {
7072
id
7173
}
@@ -113,6 +115,7 @@ def get_board_items_pagination_query(cursor: str, limit: int) -> str:
113115
items {
114116
id
115117
name
118+
updated_at
116119
group {
117120
id
118121
title
@@ -138,6 +141,7 @@ def get_board_items_pagination_query(cursor: str, limit: int) -> str:
138141
subitems {
139142
name
140143
id
144+
updated_at
141145
group {
142146
id
143147
title

0 commit comments

Comments
 (0)