Working with Json fields
Use the Json
Prisma ORM field type to read, write, and perform basic filtering on JSON types in the underlying database. In the following example, the User
model has an optional Json
field named extendedPetsData
:
model User {
id Int @id @default(autoincrement())
email String @unique
name String?
posts Post[]
extendedPetsData Json?
}
Example field value:
{
"pet1": {
"petName": "Claudine",
"petType": "House cat"
},
"pet2": {
"petName": "Sunny",
"petType": "Gerbil"
}
}
Note: The
Json
field is only supported if the underlying database has a corresponding JSON data type.
The Json
field supports a few additional types, such as string
and boolean
. These additional types exist to match the types supported by JSON.parse()
:
export declare type JsonValue =
| string
| number
| boolean
| null
| JsonObject
| JsonArray
Use cases for JSON fields
Reasons to store data as JSON rather than representing data as related models include:
- You need to store data that does not have a consistent structure
- You are importing data from another system and do not want to map that data to Prisma models
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: {
email: 'birgitte@prisma.io',
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 (simple)
You can filter rows of Json
type.
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 a Json
field (advanced)
You can also filter rows by the data inside a Json
field. We call this advanced Json
filtering. This functionality 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.
The availability of advanced Json
filtering depends on your Prisma version:
- v4.0.0 or later: advanced
Json
filtering is generally available. - From v2.23.0, but before v4.0.0: advanced
Json
filtering is a preview feature. AddpreviewFeatures = ["filterJson"]
to your schema. Learn more. - Before v2.23.0: you can filter on the exact
Json
field value, but you cannot use the other features described in this section.
path
syntax depending on database
The filters below use a path
option to select specific parts of the Json
value to filter on. The implementation of that filtering differs between connectors:
- The MySQL connector uses MySQL's implementation of JSON path
- The PostgreSQL connector uses the custom JSON functions and operators supported in version 12 and earlier
For example, the following is a valid MySQL path
value:
$petFeatures.petName
The following is a valid PostgreSQL path
value:
["petFeatures", "petName"]
Filter on object property
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',
},
},
})
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',
},
},
})
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',
},
},
})
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',
},
},
],
},
})
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.
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
array_contains: 'Claudine',
},
},
})
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.
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: '$.cats.fostering',
array_contains: 'Fido',
},
},
})
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'],
},
},
})
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,
},
},
})
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 }]
// PostgreSQLIf 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',
},
},
})
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:
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: '$[*].petType',
array_contains: 'Moose',
},
},
})
$[*]
is the root array of pet objectspetType
matches thepetType
key in any pet object
The following query returns all users where at least one pet has an expired insurance:
const getUsers = await prisma.user.findMany({
where: {
extendedPetsData: {
path: '$[*].insurances[*].status',
array_contains: 'expired',
},
},
})
$[*]
is the root array of pet objectsinsurances[*]
matches anyinsurances
array inside any pet objectstatus
matches anystatus
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:
- Gets all users
- Change the
"status"
of each insurance object to"expired"
- 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)
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 insuranceList = petsObject['insurances'] // is a Prisma.JsonArray
if (Array.isArray(insuranceList)) {
insuranceList.forEach((insuranceItem) => {
if (
insuranceItem &&
typeof insuranceItem === 'object' &&
!Array.isArray(insuranceItem)
) {
insuranceItem['status'] = 'expired' // is a Prisma.JsonObject
}
})
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 aNULL
. - JSON
null
: The value in the database contains a JSON value that isnull
.
To differentiate between these possibilities, we've introduced three null enums you can use:
JsonNull
: Represents thenull
value in JSON.DbNull
: Represents theNULL
value in the database.AnyNull
: Represents bothnull
JSON values andNULL
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 databaseNULL
does not exist. - The null enums do not apply to the
array_contains
operator in all databases because there can only be a JSONnull
within a JSON array. Since there cannot be a databaseNULL
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.
Typed Json
By default, Json
fields are not typed in Prisma models. To accomplish strong typing inside of these fields, you will need to use an external package like prisma-json-types-generator to accomplish this.
Using prisma-json-types-generator
First, install and configure prisma-json-types-generator
according to the package's instructions.
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
model Log {
id Int @id
/// [LogMetaType]
meta Json
}
Then, make sure you define the above type in a type declaration file included in your tsconfig.json
declare global {
namespace PrismaJson {
type LogMetaType = { timestamp: number; host: string }
}
}
Now, when working with Log.meta
it will be strongly typed!
Json
FAQs
Can you select a subset of JSON key/values to return?
No - it is not yet possible to select which JSON elements to return. Prisma Client returns the entire JSON object.
Can you filter on the presence of a specific key?
No - it is not yet possible to filter on the presence of a specific key.
Is case insensitive filtering supported?
No - case insensitive filtering is not yet supported.
How to set a default value for JSON fields?
When you want to set a @default
value the Json
type, you need to enclose it with double-quotes inside the @default
attribute (and potentially escape any "inner" double-quotes using a backslash), for example:
model User {
id Int @id @default(autoincrement())
json1 Json @default("[]")
json2 Json @default("{ \"hello\": \"world\" }")
}