Skip to content

Instantly share code, notes, and snippets.

@isvargasmsft
Last active July 10, 2023 21:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save isvargasmsft/fb768299ac9e2121a359290c404c3e4e to your computer and use it in GitHub Desktop.
Save isvargasmsft/fb768299ac9e2121a359290c404c3e4e to your computer and use it in GitHub Desktop.
Request builder pattern for PHP SDK 2.0.0-RC5
<?php
// v1.x
$response = $graphClient->createRequest('GET', '/users/userId/messages')
->setReturnType(Model\User::class)
->execute();
// v2.0-RC
$response = $graphServiceClient->usersById('userId')->messages()->get()->wait();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment