Skip to content

Commit

Permalink
Add missing review features (prisma#2296)
Browse files Browse the repository at this point in the history
* fix: broken links in mdx files

* add: initial full-text search docs

* Update content/200-concepts/100-components/02-prisma-client/060-full-text-search.mdx

* Update content/200-concepts/100-components/02-prisma-client/060-full-text-search.mdx

* Update content/200-concepts/100-components/02-prisma-client/060-full-text-search.mdx

* Update content/200-concepts/100-components/02-prisma-client/060-full-text-search.mdx

* Added missing preview features to list. Missing filterJson info

Co-authored-by: Nilu <nilubava@gmail.com>
Co-authored-by: Matthew Mueller <mattmuelle@gmail.com>
  • Loading branch information
3 people committed Sep 8, 2021
1 parent 4f9fe3a commit 5512cb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ metaDescription: Prisma Client features that are currently in preview.

The following [Preview](../../../../about/releases#preview) feature flags are available for Prisma Client and the Prisma schema:

- `filterJson` since release [2.23.0](https://github.com/prisma/prisma/releases/tag/2.23.0) - [Submit feedback](https://github.com/prisma/prisma/issues/7135)
- [`interactiveTransactions`](../prisma-client/transactions#interactive-transactions-in-preview) since release [2.29.0](https://github.com/prisma/prisma/releases/tag/2.29.0) - [Submit feedback](https://github.com/prisma/prisma/issues/8664)
- [`mongoDb`](../../database-connectors/mongodb) since release [2.27.0](https://github.com/prisma/prisma/releases/tag/2.27.0) - [Submit feedback](https://github.com/prisma/prisma/issues/8241)
- [`fullTextSearch`](../prisma-client/full-text-search) since release [2.30.0](https://github.com/prisma/prisma/releases/tag/2.30.0) - [Submit feedback](https://github.com/prisma/prisma/issues/8877)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ In this guide, you will create the necessary resources in Azure, create the data

This guide's focus is showing how Prisma can be used in the Azure cloud focusing on Azure Functions and Azure SQL. The starting point is the [Prisma Azure Functions example](https://github.com/prisma/prisma-examples/tree/latest/deployment-platforms/azure-functions) – a REST API for a simple blog with two models: `User` and `Post` (_1:n_). The example contains REST endpoints preconfigured as serverless functions.

Note that Azure SQL support in Prisma is in [Preview](/about/prisma/releases#preview).

With Azure Functions, the fundamental building block is a [**Function App**](https://docs.microsoft.com/en-us/azure/azure-functions/functions-reference#function-app). A function app provides an execution context in Azure in which your functions run. It is comprised of one or more individual functions that are managed, deployed, and scaled together. That way, you can organize and collectively manage multiple functions as a single logical unit.

> Throughout the guide, you'll find various **checkpoints** that enable you to validate whether you performed the steps correctly.
Expand Down

0 comments on commit 5512cb2

Please sign in to comment.