Filtering is in an experimental phase and breaking changes are possible without announcements. Errors occurring when using filters will not be handled with the highest priority.The SkillEngine API provides a syntax to filter the entities returned and used for a response. It allows you to find entities with specific properties easily. Because the SkillEngine API is developed in Django the syntax is fairly similar to the one used by Django.
employees
jobs
job_families
vacancies
courses
exact
(default)iexact
contains
icontains
startswith
istartswith
endswith
iendswith
gt
gte
lt
lte
is_null
__
like
this
and
and or
; filters can also be
negated by using not
.
The precedence of the operators isnot
,and
,or
equal to the operator precedence of Python and most other programming languages.
cp_
prefix.