We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug escaping apostrophes does not return expected results
To Reproduce
find a page that contains an apostrophe https://graph.microsoft.com/beta/sites/{SiteID}/pages/microsoft.graph.sitePage?
https://graph.microsoft.com/beta/sites/{SiteID}/pages/microsoft.graph.sitePage?
from the above api call I can see this page that contains an apostrophe (%27)
"webUrl": "https://company.sharepoint.com/our-sites/Swansea/SitePages/-I%27m-dreaming-of-a-white-Bay-Christmas.aspx",
adding a filter to return the above, does not work
https://graph.microsoft.com/beta/sites/{SiteID}/pages/microsoft.graph.sitePage?filter=webUrl eq 'https://company.sharepoint.com/our-sites/sitename/SitePages/-I%27m-dreaming-of-a-white-Bay-Christmas.aspx'
I have tried the following in place of %27 %27%27 %27 ''
all return a blank response
Expected behavior
the page should be returned
The text was updated successfully, but these errors were encountered:
ElinorW
No branches or pull requests
Describe the bug
escaping apostrophes does not return expected results
To Reproduce
find a page that contains an apostrophe
https://graph.microsoft.com/beta/sites/{SiteID}/pages/microsoft.graph.sitePage?
from the above api call I can see this page that contains an apostrophe (%27)
"webUrl": "https://company.sharepoint.com/our-sites/Swansea/SitePages/-I%27m-dreaming-of-a-white-Bay-Christmas.aspx",
adding a filter to return the above, does not work
https://graph.microsoft.com/beta/sites/{SiteID}/pages/microsoft.graph.sitePage?filter=webUrl eq 'https://company.sharepoint.com/our-sites/sitename/SitePages/-I%27m-dreaming-of-a-white-Bay-Christmas.aspx'
I have tried the following in place of %27
%27%27
%27
''
all return a blank response
Expected behavior
the page should be returned
The text was updated successfully, but these errors were encountered: