Package-level declarations

Types

Link copied to clipboard
class AdvancedExamples(mongoTemplate: MongoTemplate)

Example demonstrating complex queries

Link copied to clipboard
data class Order(val id: String? = null, val customerId: String, val productId: String, val quantity: Int, val total: Double, val status: String, val orderDate: Date)
Link copied to clipboard
@Service
class OrderService(mongoTemplate: MongoTemplate)

Example service using extension function style

Link copied to clipboard
data class Product(val id: String? = null, val name: String, val price: Double, val category: String, val status: String, val rating: Double? = null, val inStock: Boolean = true, val tags: List<String> = emptyList())

Example domain models

Link copied to clipboard
@Service
class ProductService(mongoTemplate: MongoTemplate)

Example service demonstrating Konduct usage