ComputedPropertyResponse

data class ComputedPropertyResponse(val name: String? = null, val query: String? = null)

The definition of a computed property

Constructors

Link copied to clipboard
constructor(name: String? = null, query: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val name: String? = null

The name of a computed property, for example - "cp_lowerName"

Link copied to clipboard
val query: String? = null

The query that evaluates the value for computed property, for example - "SELECT VALUE LOWER(c.name) FROM c"