We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5471f7 commit 6a4f6e2Copy full SHA for 6a4f6e2
plane/models/query_params.py
@@ -58,11 +58,12 @@ class WorkItemQueryParams(PaginatedQueryParams):
58
- fields: Comma-separated fields to include
59
- order_by: Field to order by (prefix with '-' for descending)
60
- per_page: Number of results per page (1-100)
61
+ - pql: PQL filters
62
"""
63
64
model_config = ConfigDict(extra="ignore", populate_by_name=True)
65
- pql: str | None = Field(None, description="PQL filters ")
66
+ pql: str | None = Field(None, description="PQL filters")
67
68
69
class RetrieveQueryParams(BaseQueryParams):
0 commit comments