KtMongo
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
KtMongo
Kotlin BSON • Test suites
/
opensavvy.ktmongo.bson.path
Package-level
declarations
Types
Functions
Types
Pet
Link copied to clipboard
@
Serializable
data
class
Pet
(
val
name
:
String
,
val
age
:
Int
?
,
val
species
:
Species
)
Profile
Link copied to clipboard
@
Serializable
data
class
Profile
(
val
name
:
String
,
val
age
:
Int
)
Species
Link copied to clipboard
@
Serializable
enum
Species
:
Enum
<
Species
>
User
Link copied to clipboard
@
Serializable
data
class
User
(
val
_id
:
ObjectId
,
val
profile
:
Profile
,
val
pets
:
List
<
Pet
>
)
Functions
bson
Path
Tests
Link copied to clipboard
fun
SuiteDsl
.
bsonPathTests
(
context
:
Prepared
<
BsonFactory
>
)