-
Notifications
You must be signed in to change notification settings - Fork 1k
Closed
Labels
Needs: Author FeedbackAwaiting response from the original poster of the issue. Marked as stale if no activity for 7 days.Awaiting response from the original poster of the issue. Marked as stale if no activity for 7 days.Needs: Triage 🔍Awaiting categorization and initial review.Awaiting categorization and initial review.
Description
What type of issue is this?
Question
What SharePoint development model, framework, SDK or API is this about?
💥 SharePoint Framework
Target SharePoint environment
SharePoint Online
What browser(s) / client(s) have you tested
- 💥 Internet Explorer
- 💥 Microsoft Edge
- 💥 Google Chrome
- 💥 FireFox
- 💥 Safari
- mobile (iOS/iPadOS)
- mobile (Android)
- not applicable
- other (enter in the "Additional environment details" area below)
Additional environment details
- browser version
- SPFx version
- Node.js version
- etc
Issue description
Below is the code
How to fix this.
Need to retrive sharepoint list data with filtering
async usingCAML() {
const camlQuery = <View><Query><Where><And><Eq><FieldRef Name="Category"/><Value Type="Choice">Taxes</Value></Eq><Membership Type="CurrentUserGroups><FieldRef Name="All Financial Advisory Users DG"/></Membership></And></Where><OrderBy><FieldRef Name="AppName" Ascending="TRUE"/></OrderBy></Query></View>
;
try {
const items = await sp.web.lists
.getByTitle("Business Apps")
.getItemsByCAMLQuery({ ViewXml: camlQuery });
console.log("CAML 111 : ", items);
} catch (error) {
console.log("CAMLERROR 111 : ", error);
}
const body = {
query: {
ViewXml: camlQuery,
},
};
const options = {
body: JSON.stringify(body),
};
const tenantUrl = common.getTenantUrl(
this.props.context.pageContext.web.absoluteUrl
);
await this.props.context.spHttpClient
.post(
`${tenantUrl}/sites/Corporate-Technology/sandbox/_api/web/lists/getbytitle('Business%20Apps')/GetItems`,
SPHttpClient.configurations.v1,
options
)
.then(async (response: SPHttpClientResponse) => {
console.log("CAML 1 : ", await response.json());
//return response.json();
});
}
Metadata
Metadata
Assignees
Labels
Needs: Author FeedbackAwaiting response from the original poster of the issue. Marked as stale if no activity for 7 days.Awaiting response from the original poster of the issue. Marked as stale if no activity for 7 days.Needs: Triage 🔍Awaiting categorization and initial review.Awaiting categorization and initial review.