我想查询仅获取记录数而不是所有对象。
我正在这样做:
"""<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:ns0="http://www.service-now.com/incident"
xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<ns1:Body>
<ns0:getRecords>
<ns0:__limit>100</ns0:__limit>
</ns0:getRecords>
</ns1:Body>
</SOAP-ENV:Envelope>
但它返回所有限制为 100 的对象并保持缓慢,为了获得更好的性能,我认为如果只返回记录数它会变得更好。
有什么办法吗?