Skip to main content

Content__ObjectModification

Modification that adds CMS content information.

1
type Content__ObjectModification {
2
draft: Boolean
3
trash: Boolean
4
publishDate: Date
5
publishUser: RecordRef
6
updateDate: Date
7
updateUser: RecordRef
8
createDate: Date
9
createUser: RecordRef
10
scheduled: Boolean
11
scheduleDate: Date
12
overlaid: Boolean
13
}

Fields

draft ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.draft"
4
embedded: false
5
)

trash ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.trashed"
4
embedded: false
5
)

publishDate ● Date scalar common @gca_getter @gca_object_field

Returns the date when the given object was published.

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.publishDate"
4
embedded: false
5
)

publishUser ● RecordRef object common @gca_getter @gca_object_field

Returns the tool user that published the given object.

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.publishUser"
4
embedded: false
5
)

updateDate ● Date scalar common @gca_getter @gca_object_field

Returns the date when the given object was last updated.

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.updateDate"
4
embedded: false
5
)

updateUser ● RecordRef object common @gca_getter @gca_object_field

Returns the tool user that last updated the given object.

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.updateUser"
4
embedded: false
5
)

createDate ● Date scalar common @gca_getter @gca_object_field

Returns the date when the given object was created.

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.createDate"
4
embedded: false
5
)

createUser ● RecordRef object common @gca_getter @gca_object_field

Returns the tool user that created the given object.

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: true
3
internalName: "cms.content.createUser"
4
embedded: false
5
)

scheduled ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "cms.content.scheduled"
4
embedded: false
5
)

scheduleDate ● Date scalar common @gca_getter @gca_object_field

Applied directive:

1
@gca_getter

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "cms.content.scheduleDate"
4
embedded: false
5
)

overlaid ● Boolean scalar common @gca_object_field

Applied directive:

1
@gca_object_field(
2
indexed: false
3
internalName: "cms.content.overlaid"
4
embedded: false
5
)

Member Of