Skip to content

Commit

Permalink
update instructions and fix intentional issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jharrell committed Oct 9, 2024
1 parent 03be96f commit bfa65aa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check-all-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
OUTPUT="## Dangerous URL check"$'\n'
SUCCESS=false
if [ -n "${FILES_WITH_ABS_URLS}" ]; then # if there were matching files
OUTPUT+="### Absolute URLs"$'\n'
OUTPUT+="The following files have absolute URLs to prisma.io/docs. Please replace them with relative URLs."$'\n'
OUTPUT+="Example: https://www.prisma.io/docs/getting-started/quickstart -> /getting-started/quickstart"$'\n'
for line in ${FILES_WITH_ABS_URLS}
Expand All @@ -38,8 +39,9 @@ jobs:
SUCCESS=true
fi
if [ -n "${FILES_WITH_LOCAL_URLS}" ]; then
OUTPUT+="The following files have local URLs. Please replace them with absolute URLs."$'\n'
OUTPUT+="Example: /getting-started/quickstart -> https://www.prisma.io/docs/getting-started/quickstart"$'\n'
OUTPUT+="### Local URLs"$'\n'
OUTPUT+="The following files have local URLs. Please remove any leading dots."$'\n'
OUTPUT+="Example: ./getting-started/quickstart -> /getting-started/quickstart"$'\n'
for line in ${FILES_WITH_LOCAL_URLS}
do
OUTPUT+="${line}"$'\n'
Expand Down
2 changes: 1 addition & 1 deletion content/300-accelerate/500-known-limitations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ At the moment, it is not possible to cache the responses of [raw queries](/orm/p

## Not compatible with the fluent API

Client Extensions (which are used in Accelerate) currently do not correctly forward the [fluent API](./orm/prisma-client/queries/relation-queries#fluent-api) types. We hope to get a fix into Client Extensions soon.
Client Extensions (which are used in Accelerate) currently do not correctly forward the [fluent API](/orm/prisma-client/queries/relation-queries#fluent-api) types. We hope to get a fix into Client Extensions soon.

## Not compatible with extremely heavy or long-running queries

Expand Down

0 comments on commit bfa65aa

Please sign in to comment.