blob: fd551ecba213cae865ba297cc01ff841dde9c7b9 [file] [log] [blame]
package grails.test.app
import org.grails.gorm.graphql.entity.dsl.GraphQLMapping
class SoftDelete {
String name
boolean active = true
static constraints = {
}
static graphql = GraphQLMapping.build {
exclude('active')
}
}