Get “lastModifiedDateTime” with MS Graph or REST
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
1
down vote
favorite
I want to extract the "lastModifiedDateTime" from a list. I don't want to search the list by ID, but rather from its name. I know you can do it by MS graph, but the examples needs site ID as well as List ID. I want it in this similar form (tested in MS Graph explorer): const SiteUrl = this.context.current.Web.Url; SiteUrl+"/Lists/Project%20Information/AllItems.aspx/lastModifiedDateTime" Does not work. Notice I want to use the current URL and hardcoded path (since all list have the same ending/name in the URL from provisioning, but the ID is different). Is there any way I can use MS Graph to get the lastModifiedDateTime by site and list NAME and not ID? Or with...