12345678910111213141516171819202122232425262728293031323334353637 |
- # A resource publication represents information about the publication of a resource.
- # An instance of ResourcePublication, unlike ResourcePublicationV2, can be neither published or scheduled to be published.
- #
- # See ResourcePublicationV2 for more context.
- type ResourcePublication {
- # Whether the resource publication is published. Also returns true if the resource publication is scheduled to be published.
- # If false, then the resource publication is neither published nor scheduled to be published.
- isPublished: Boolean!
- # The publication the resource publication is published to.
- publication: Publication!
- # The date that the resource publication was or is going to be published to the publication.
- publishDate: DateTime!
- # The resource published to the publication.
- publishable: Publishable!
- }
- # A resource publication represents information about the publication of a resource.
- # Unlike ResourcePublication, an instance of ResourcePublicationV2 can't be unpublished. It must either be published or scheduled to be published.
- #
- # See ResourcePublication for more context.
- type ResourcePublicationV2 {
- # Whether the resource publication is published. If true, then the resource publication is published to the publication.
- # If false, then the resource publication is staged to be published to the publication.
- isPublished: Boolean!
- # The publication the resource publication is published to.
- publication: Publication!
- # The date that the resource publication was or is going to be published to the publication.
- publishDate: DateTime
- # The resource published to the publication.
- publishable: Publishable!
- }
|