Currently, python-servicenow uses the JSON API to query ServiceNow, which has some downsides: it's a bit slow to generate responses, and query results are capped at 250 rows, which can be frustratingly small. Instead, python-servicenow should use the JSONv2 API, which is much faster, and caps results at 10000 rows.
If this sounds like a good idea, I would be happy to prepare a pull-request with this change.
Currently,
python-servicenow
uses the JSON API to query ServiceNow, which has some downsides: it's a bit slow to generate responses, and query results are capped at 250 rows, which can be frustratingly small. Instead,python-servicenow
should use the JSONv2 API, which is much faster, and caps results at 10000 rows.If this sounds like a good idea, I would be happy to prepare a pull-request with this change.