Feature Request
Currently we only support getting jobs by ID on the SDK. It would be nice to be able to query them by name too, to check for duplicates and for general querying capabilities.
Workaround for now:
POST to: api/v1/job/list endpoint with a POST body like follows:
{
"metadata": {
"project_string_id": "the project string",
"search": "the name of the job"
}
}
This route shoudl return the job list matching the seach term