Azure – How to apply filter on sent items in Graph API
This is my code file where I am trying to add filters on inbox and sent items using Microsoft graph API: const GraphApiTest = ({ email }) => { const emailsPerPage = 5; const [inboxPage, setInboxPage] = useState(1); const [sentPage,…