You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lists with the system facet are hidden by default. To list them, include system in your $select statement.
I propose adding a include_system=False parameter to the Site.get_lists method, that would do result in the equivalent of self.con.get(self.build_url("/lists?select=weburl,system" )) to be requested.
The text was updated successfully, but these errors were encountered:
Sharepoint uses system lists for Site Pages, Site Assets, etc. These lists are currently inaccessible via O365.
According to this documentation: https://learn.microsoft.com/en-us/graph/api/list-list?view=graph-rest-1.0&tabs=http and this SO response: https://stackoverflow.com/a/47563009/12194489:
I propose adding a include_system=False parameter to the
Site.get_lists
method, that would do result in the equivalent ofself.con.get(self.build_url("/lists?select=weburl,system" ))
to be requested.The text was updated successfully, but these errors were encountered: