OBJECT
Revision
Revision of blocks on PLC
link GraphQL Schema definition
- type Revision {
- # Revision ID
- : ID!
- # Ordinal
- : Int!
- # The first time the revision was seen
- : Time!
- # The last time the revision was seen
- : Time!
- # Whether this revision is the base revision of the asset
- : Boolean!
- # Revision snapshots
- #
- # Arguments
- # after: Returns the items in the list that come after the
- # specified cursor.
- # first: Returns the first n items from the list.
- # before: Returns the items in the list that come before the
- # specified cursor.
- # last: Returns the last n items from the list.
- (
- : String,
- : Int,
- : String,
- : Int
- ): SnapshotConnection!
- # PLC blocks
- : JSON!
- # PLC blocks (same as 'blocks', but GraphQL typed)
- : BlockTreeNode!
- # Diff to base revision
- : JSON!
- # Diff to base revision (same as 'diffToBase', but GraphQL typed)
- : BlockTreeNode!
- # Diff to previous revision
- : JSON!
- # Diff to previous revision (same as 'diffToPrev', but GraphQL typed)
- : BlockTreeNode!
- }