Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 332 Bytes

File metadata and controls

20 lines (15 loc) · 332 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

let contacts = await client.api('/contacts')
	.header('ConsistencyLevel','eventual')
	.filter('startswith(displayName,\'A\')')
	.orderby('displayName')
	.top(1)
	.get();