Skip to content
New issue

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

fix: use full url for linking to api doc #459

Merged
merged 3 commits into from
Sep 7, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions docs/js/features/odata/odata-v4-client.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ keywords:
- consume
---

import useBaseUrl from '@docusaurus/useBaseUrl';

:::danger OData v4 is experimental and not ready for production
Typed client for OData v4 is under heavy development and was released only as `experimental/Beta`. Please, use it on you own discretion. We'll explicitly communicate in the release notes when it's stable and general availability.
:::
Expand All @@ -26,7 +24,7 @@ For more details on **how to execute requests** using a (pre-)generated OData cl

#### Filter on One-To-Many Navigation Properties

OData V4 introduces the [lambda operators](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_LambdaOperators) e.g., `any`/`all`, so that the root property of the one-to-many navigation properties can be filtered. Below is an example that demonstrates how to use the lambda operator [any]({useBaseUrl(/api/1.28.1/modules/sap_cloud_sdk_core#any)}).
OData V4 introduces the [lambda operators](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_LambdaOperators) e.g., `any`/`all`, so that the root property of the one-to-many navigation properties can be filtered. Below is an example that demonstrates how to use the lambda operator [any](https://sap.github.io/cloud-sdk/api/1.28.1/modules/sap_cloud_sdk_core#any).
marikaner marked this conversation as resolved.
Show resolved Hide resolved

```ts
/*
Expand Down