Questions tagged [graph]
The graph tag has no summary.
9 questions
1
vote
1
answer
119
views
How can I add top and/or limit and/or skip to a graph rest api to get both list and items
So, we have the long-running question: how to get column display names and items in one call? (see here)
Seemed that the only answer back then is that you either needed to send two rest api calls or ...
0
votes
0
answers
128
views
Graph API isnt returning the column I need
I have a number of SharePoint sites that publish news articles. One of the Key fields is "First Published Date". Which shows if the article is published or still in draft.
I have tried;
...
0
votes
1
answer
134
views
How to process information from a modern Sharepoint page, article type, with api MSFT
I know that the content of a SharePoint page is stored in CanvasContent1 and that I can retrieve it using the item ID:
https://contoso.sharepoint.com/sites/SiteName/_api/web/lists/getbytitle('Site ...
0
votes
1
answer
416
views
In a graph search query, is it possible to retrieve per each listItem, their parent name?
I make a POST query to /search Graph API, with the following body:
{
"requests": [
{
"entityTypes": [
"listItem"
],
"...
0
votes
1
answer
1k
views
Microsoft Graph : $filter/ $search query parameter, cannot find any documents
My document library hierarchy is like this:
I try to use the Graph API to extract some information or documentations from my Document Library in SharePoint Online, for instance:
GET https://graph....
0
votes
2
answers
2k
views
How to get the graph site ID of the current using V2.0 REST Endpoint?
I'd like to perform some operations that are only available using the GRAPH Api (adding content from the content type hub for example).
But I'm in a context where I can only perform operations using ...
0
votes
1
answer
921
views
get sharepoint public image using graph api
I want to get a public URL to get the images of a list column using the graph API
When using the sharepoint REST API I could do it this way:
https://mysite.sharepoint.com/sites/namesite/_api/web/lists/...
0
votes
1
answer
901
views
Guest User access to Tenants Graph API
I am currently facing an issue with a requirement that was presented to me, and i would like to ask you guys on possible ways of solving it.
The requirement is to enable External/Guest users to have ...
1
vote
2
answers
2k
views
Getting the Graph ID for a SharePoint document using the CSOM or REST api?
If we are crawling sharepoint online, we can access these data from API using:
MS graph API
or
SharePoint REST API (CSOM, ODATA)
All of our code uses the CSOM rest API for SharePoint.
But, for each ...