@mikezimm/fps-core-v7
Version:
Library of reusable core interfaces, types and constants migrated from fps-library-v2
16 lines • 782 B
TypeScript
/**
* 2024-12-07: MIGRATED FROM fps-library-v2/lib\pnpjs\Batching\buildBatches
*/
/**
*
* @param prop example: Id or Title
* @param items example: array of Items - Must be either String or Number type. Checked only on first item.
* @param doubleQuote : 2023-02-05 Testing has shown that strings must be in single quotes, NOT double quotes
* @param maxLength : //Max is 2048 for entire Url per - http://blog.binaryrepublik.com/2020/05/how-to-overcome-url-length-limitation.html#.YPmv1uhKieg
*
* 'Id eq ' + idsToGet.join(' or Id eq ');
* Testing found that 1225 length of filter string caused 404 error.
*
*/
export declare function buildFilterBatches(prop: string, items: any[], maxLength?: number): string[];
//# sourceMappingURL=buildBatches.d.ts.map