dcblogdev / laravel-microsoft-graph

Laravel package for Microsoft Graph API (Microsoft365)

Home Page:https://dcblog.dev/docs/laravel-microsoft-graph

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Ideas

dcblogdev opened this issue · comments

So I'm planning to change the API for a v2 that will break the traits but will offer a more uniformed API such as:

MsGraph->contacts()->get()
MsGraph->contacts()->find()
MsGraph->contacts()->create()
MsGraph->contacts()->update()
MsGraph->contacts()->delete()

MsGraph->emails()->get()
MsGraph->emails()->find()
MsGraph->emails()->send()
MsGraph->emails()->reply()
MsGraph->emails()->forward()
MsGraph->emails()->delete()

MsGraph->calendar()->get()
MsGraph->calendar()->find()
MsGraph->calendar()->send()
MsGraph->calendar()->reply()
MsGraph->calendar()->forward()
MsGraph->calendar()->delete()