Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const QueryBuilderContent = () => {
<QueryBuilderError error={errorMessage} autoHide={Boolean(switchError)} />
<DocsLink
className="absolute bottom-2 right-2 text-sm"
href="https://upstash-search.mintlify.app/redis/search/query-operators/boolean-operators/overview"
href="https://upstash.com/docs/redis/search/query-operators/boolean-operators/overview"
/>
</div>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const QueryWizardPopover = ({ onClose }: { onClose?: () => void }) => {
<span className="text-xs text-zinc-500">
Example: Find people named "John", boost if older than 20.
</span>
<DocsLink href="https://upstash-search.mintlify.app/redis/search/query-operators/boolean-operators/overview" />
<DocsLink href="https://upstash.com/docs/redis/search/query-operators/boolean-operators/overview" />
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export const SearchEmptyState = () => {
</div>

<a
href="https://upstash-search.mintlify.app/redis/search/introduction"
href="https://upstash.com/docs/redis/search/introduction"
target="_blank"
rel="noopener noreferrer"
className="mt-5 inline-block text-sm text-emerald-600 underline-offset-2 hover:underline"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ export const SearchDisplay = ({
</div>
<DocsLink
className="absolute bottom-2 right-2 text-sm"
href="https://upstash-search.mintlify.app/redis/search/schema-definition"
href="https://upstash.com/docs/redis/search/schema-definition"
/>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const BoostBadge = ({
? `Multiplies this condition's score by ${node.boost ?? 0}, subtracting from the total.`
: `Multiplies this condition's score by ${node.boost ?? 0}.`}
</span>
<DocsLink href="https://upstash-search.mintlify.app/redis/search/query-operators/boolean-operators/boost" />
<DocsLink href="https://upstash.com/docs/redis/search/query-operators/boolean-operators/boost" />
</TooltipContent>
</Tooltip>
{isStatic ? (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const InnerGroup = ({
<span>
Keys matching any of the conditions below are excluded from the results.
</span>
<DocsLink href="https://upstash-search.mintlify.app/redis/search/query-operators/boolean-operators/must-not" />
<DocsLink href="https://upstash.com/docs/redis/search/query-operators/boolean-operators/must-not" />
</TooltipContent>
</Tooltip>
)}
Expand Down
Loading