添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Reading a Json field

You can use the Prisma.JsonArray and Prisma.JsonObject utility classes to work with the contents of a Json field:

const { PrismaClient, Prisma } = require('@prisma/client')
const user = await prisma.user.findFirst({
where: {
id: 9,
},
})
// Example extendedPetsData data:
// [{ name: 'Bob the dog' }, { name: 'Claudine the cat' }]
if (
user?.extendedPetsData &&
typeof user?.extendedPetsData === 'object' &&
Array.isArray(user?.extendedPetsData)
) {
const petsObject = user?.extendedPetsData as Prisma.JsonArray
const firstPet = petsObject[0]
}

See also: Advanced example: Update a nested JSON key value

Writing to a Json field

The following example writes a JSON object to the extendedPetsData field:

var json = [
{ name: 'Bob the dog' },
{ name: 'Claudine the cat' },
] as Prisma.JsonArray
const createUser = await prisma.user.create({
data: {
extendedPetsData: json,
},
})

Note : JavaScript objects (for example, { extendedPetsData: "none"} ) are automatically converted to JSON.

See also: Advanced example: Update a nested JSON key value

Filter on a Json field

From v2.23.0, you can filter rows by the data inside a Json type. We call this advanced Json filtering .

The availability of advanced Json filtering depends on your Prisma ORM version:

Advanced Json filtering is supported by PostgreSQL and MySQL only with different syntaxes for the path option. PostgreSQL does not support filtering on object key values in arrays .

Database connector implementation differences

The implementation of Json filtering differs between connectors:

This means that path option syntax differs between database connectors - for example, the following is a valid MySQL path value:

$petFeatures.petName

The following is a valid PostgreSQL path value:

["petFeatures", "petName"]

Filter on exact field value

The following query returns all users where the value of extendedPetsData matches the json variable exactly:

var json = { [{ name: 'Bob the dog' }, { name: 'Claudine the cat' }] }
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
equals: json,
},
},
})

The following query returns all users where the value of extendedPetsData does not match the json variable exactly:

var json = {
extendedPetsData: [{ name: 'Bob the dog' }, { name: 'Claudine the cat' }],
}
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
not: json,
},
},
})

Filter on object property

In and later, you can filter on a specific property inside a block of JSON. In the following examples, the value of extendedPetsData is a one-dimensional, unnested JSON object:

{
"petName": "Claudine",
"petType": "House cat"
}

The following query returns all users where the value of petName is "Claudine" :

PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: ['petName'],
equals: 'Claudine',
},
},
})

The following query returns all users where the value of petType contains "cat" :

PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: ['petType'],
string_contains: 'cat',
},
},
})

The following string filters are available:

Filter on nested object property

You can filter on nested JSON properties. In the following examples, the value of extendedPetsData is a JSON object with several levels of nesting.

{
"pet1": {
"petName": "Claudine",
"petType": "House cat"
},
"pet2": {
"petName": "Sunny",
"petType": "Gerbil",
"features": {
"eyeColor": "Brown",
"furColor": "White and black"
}
}
}

The following query returns all users where "pet2" "petName" is "Sunny" :

PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: ['pet2', 'petName'],
equals: 'Sunny',
},
},
})

The following query returns all users where:

  • "pet2" "petName" is "Sunny"
  • "pet2" "features" "furColor" contains "black"
PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
AND: [
{
extendedPetsData: {
path: ['pet2', 'petName'],
equals: 'Sunny',
},
},
{
extendedPetsData: {
path: ['pet2', 'features', 'furColor'],
string_contains: 'black',
},
},
],
},
})

Filtering on an array value

You can filter on the presence of a specific value in a scalar array (strings, integers). In the following example, the value of extendedPetsData is an array of strings:

["Claudine", "Sunny"]

The following query returns all users with a pet named "Claudine" :

PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
array_contains: ['Claudine'],
},
},
})

Note : In PostgreSQL, the value of array_contains must be an array and not a string, even if the array only contains a single value.

The following array filters are available:

Filtering on nested array value

You can filter on the presence of a specific value in a scalar array (strings, integers). In the following examples, the value of extendedPetsData includes nested scalar arrays of names:

{
"cats": { "owned": ["Bob", "Sunny"], "fostering": ["Fido"] },
"dogs": { "owned": ["Ella"], "fostering": ["Prince", "Empress"] }
}

Scalar value arrays

The following query returns all users that foster a cat named "Fido" :

PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: ['cats', 'fostering'],
array_contains: ['Fido'],
},
},
})

Note : In PostgreSQL, the value of array_contains must be an array and not a string, even if the array only contains a single value.

The following query returns all users that foster cats named "Fido" and "Bob" :

PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: ['cats', 'fostering'],
array_contains: ['Fido', 'Bob'],
},
},
})

JSON object arrays

PostgreSQL
MySQL
const json = [{ status: 'expired', insuranceID: 92 }]
const checkJson = await prisma.user.findMany({
where: {
extendedPetsData: {
path: ['insurances'],
array_contains: json,
},
},
})
  • If you are using PostgreSQL, you must pass in an array of objects to match, even if that array only contains one object:

    [{ status: 'expired', insuranceID: 92 }]
    // PostgreSQL

    If you are using MySQL, you must pass in a single object to match:

    { status: 'expired', insuranceID: 92 }
    // MySQL
  • If your filter array contains multiple objects, PostgreSQL will only return results if all objects are present - not if at least one object is present.

  • You must set array_contains to a JSON object, not a string. If you use a string, Prisma Client escapes the quotation marks and the query will not return results. For example:

    array_contains: '[{"status": "expired", "insuranceID": 92}]'

    is sent to the database as:

    [{\"status\": \"expired\", \"insuranceID\": 92}]

Targeting an array element by index

You can filter on the value of an element in a specific position.

{ "owned": ["Bob", "Sunny"], "fostering": ["Fido"] }
PostgreSQL
MySQL
const getUsers = await prisma.user.findMany({
where: {
comments: {
path: ['owned', '1'],
string_contains: 'Bob',
},
},
})

Filtering on object key value inside array

Depending on your provider, you can filter on the key value of an object inside an array.

Filtering on object key values within an array is only supported by the MySQL database connector . However, you can still filter on the presence of entire JSON objects .

In the following example, the value of extendedPetsData is an array of objects with a nested insurances array, which contains two objects:

[
{
"petName": "Claudine",
"petType": "House cat",
"insurances": [
{ "insuranceID": 92, "status": "expired" },
{ "insuranceID": 12, "status": "active" }
]
},
{
"petName": "Sunny",
"petType": "Gerbil"
},
{
"petName": "Gerald",
"petType": "Corn snake"
},
{
"petName": "Nanna",
"petType": "Moose"
}
]

The following query returns all users where at least one pet is a moose:

MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: '$[*].petType',
array_contains: 'Moose',
},
},
})
  • $[*] is the root array of pet objects
  • petType matches the petType key in any pet object

The following query returns all users where at least one pet has an expired insurance:

MySQL
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: '$[*].insurances[*].status',
array_contains: 'expired',
},
},
})
  • $[*] is the root array of pet objects
  • insurances[*] matches any insurances array inside any pet object
  • status matches any status key in any insurance object

Advanced example: Update a nested JSON key value

The following example assumes that the value of extendedPetsData is some variation of the following:

{
"petName": "Claudine",
"petType": "House cat",
"insurances": [
{ "insuranceID": 92, "status": "expired" },
{ "insuranceID": 12, "status": "active" }
]
}

The following example:

  1. Gets all users
  2. Change the "status" of each insurance object to "expired"
  3. Get all users that have an expired insurance where the ID is 92
PostgreSQL
MySQL
const userQueries: string | any[] = []
getUsers.forEach((user) => {
if (
user.extendedPetsData &&
typeof user.extendedPetsData === 'object' &&
!Array.isArray(user.extendedPetsData)
) {
const petsObject = user.extendedPetsData as Prisma.JsonObject
const i = petsObject['insurances']
if (i && typeof i === 'object' && Array.isArray(i)) {
const insurancesArray = i as Prisma.JsonArray
insurancesArray.forEach((i) => {
if (i && typeof i === 'object' && !Array.isArray(i)) {
const insuranceObject = i as Prisma.JsonObject
insuranceObject['status'] = 'expired'
}
})
const whereClause = Prisma.validator<Prisma.UserWhereInput>()({
id: user.id,
})
const dataClause = Prisma.validator<Prisma.UserUpdateInput>()({
extendedPetsData: petsObject,
})
userQueries.push(
prisma.user.update({
where: whereClause,
data: dataClause,
})
)
}
}
})
if (userQueries.length > 0) {
console.log(userQueries.length + ' queries to run!')
await prisma.$transaction(userQueries)
}
const json = [{ status: 'expired', insuranceID: 92 }]
const checkJson = await prisma.user.findMany({
where: {
extendedPetsData: {
path: ['insurances'],
array_contains: json,
},
},
})
console.log(checkJson.length)

Using null Values

There are two types of null values possible for a JSON field in an SQL database.

  • Database NULL : The value in the database is a NULL .
  • JSON null : The value in the database contains a JSON value that is null .

To differentiate between these possibilities, we've introduced three null enums you can use:

  • JsonNull : Represents the null value in JSON.
  • DbNull : Represents the NULL value in the database.
  • AnyNull : Represents both null JSON values and NULL database values. (Only when filtering)

From v4.0.0, JsonNull , DbNull , and AnyNull are objects. Before v4.0.0, they were strings.

  • When filtering using any of the null enums you can not use a shorthand and leave the equals operator off.
  • These null enums do not apply to MongoDB because there the difference between a JSON null and a database NULL does not exist.
  • The null enums do not apply to the array_contains operator in all databases because there can only be a JSON null within a JSON array. Since there cannot be a database NULL within a JSON array, { array_contains: null } is not ambiguous.
For example:
model Log {
id Int @id
meta Json
}

Here is an example of using AnyNull :

import { Prisma } from '@prisma/client'
prisma.log.findMany({
where: {
data: {
meta: {
equals: Prisma.AnyNull,
},
},
},
})

Inserting null Values

This also applies to create , update and upsert . To insert a null value into a Json field, you would write:

import { Prisma } from '@prisma/client'
prisma.log.create({
data: {
meta: Prisma.JsonNull,
},
})

And to insert a database NULL into a Json field, you would write:

import { Prisma } from '@prisma/client'
prisma.log.create({
data: {
meta: Prisma.DbNull,
},
})

Filtering by null Values

To filter by JsonNull or DbNull , you would write:

import { Prisma } from '@prisma/client'
prisma.log.findMany({
where: {
meta: {
equals: Prisma.AnyNull,
},
},
})

These null enums do not apply to MongoDB because MongoDB does not differentiate between a JSON null and a database NULL . They also do not apply to the array_contains operator in all databases because there can only be a JSON null within a JSON array. Since there cannot be a database NULL within a JSON array, { array_contains: null } is not ambiguous.

Using prisma-json-types-generator

First, install and configure prisma-json-types-generator .

Then, assuming you have a model like the following:

model Log {
id Int @id
meta Json
}

You can update it and type it by using abstract syntax tree comments

schema.prisma
1model Log {
2 id Int @id
3
4 /// [LogMetaType]
5 meta Json
6}

Then, make sure you define the above type in a type declaration file included in your tsconfig.json

types.ts
1declare global {
2 namespace PrismaJson {
3 type LogMetaType = { timestamp: number; host: string }
4 }
5}

Now, when working with Log.meta it will be strongly typed!