Using Non Requirement Variables

I have this:
query DriversList(
$filter: DriverFilter
$sorting: [DriverSort]
$paging: OffsetPaging
) {
drivers(filter: $filter, sorting: $sorting, paging: $paging) {
nodes {
id
name
email
licenseNumber
phone
job {
id
title
industry
description
}
joined
}
totalCount
}
}


But it seems to not work.
How can I have the filter/sort/paging not required?
Was this page helpful?