Sign in
apache
/
grails-data-mapping
/
ecc608831967aee5f035b1bba28dee848aaa93e7
/
.
/
grails-data-graphql
/
examples
/
grails-test-app
/
grails-app
/
domain
/
grails
/
test
/
app
/
SoftDelete.groovy
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'
)
}
}