This solution seems like it may evolve over time. I found a working solution for v1.5.4 by investigating the configs with this query
CALL dbms.listConfig()
YIELD name, value
WHERE name CONTAINS 'import'
RETURN name, value
ORDER BY name
LIMIT 40;
And ...