Get all commit details of a stream


#Graphql query to get all commit details of a stream.

  project(id: $STREAM_ID) {
    versions {
      items {
        createdAt
        message
        sourceApplication
        model {
          name
        }
        previewUrl
      }
    }
  }