nemo_microservices.types.project_list_params#
Module Contents#
Classes#
API#
- class nemo_microservices.types.project_list_params.ProjectListParams#
Bases:
typing_extensions.TypedDict- filter: nemo_microservices.types.project_filter_param.ProjectFilterParam#
None
Filter projects on various criteria.
- page: int#
None
Page number.
- page_size: int#
None
Page size.
- search: nemo_microservices.types.project_search_param.ProjectSearchParam#
None
Search projects using substring matching.
You can combine multiple search fields and filters.
For example:
?search[name]=vision: searches all projects with ‘vision’ in the name.?search[description]=classification: searches all projects with ‘classification’ in the description.?search[namespace]=research: searches all projects with ‘research’ in the namespace.?search[name]=vision&search[namespace]=research: searches all projects with ‘vision’ in the name AND ‘research’ in the namespace.?search[name]=vision&search[name]=nlp: searches all projects with ‘vision’ OR ‘nlp’ in the name.?search[updated_at][start]=2024-01-01T00:00:00finds all projects updated on or after the start date?search[created_at][start]=2022-01-01&search[updated_at][end]=2024-01-01finds all projects created from start date up to and including end date
- sort: nemo_microservices.types.project_sort_field.ProjectSortField#
None
The field to sort by.
To sort in decreasing order, use
-in front of the field name.