Technology•November 28, 2018
Getting started with GraphQL and Apache Cassandra™

public interface CommentDseDao {
/** Provide videoid and paging information to retrieve a set of comments. */ ResultListPagefindCommentsByVideoId(QueryCommentByVideo query);
/** Provide userid and paging information to retrieve a set of comments. */ ResultListPage resultComments = findCommentsByUserId(QueryCommentByUser query);
/** Insert new comment on all expected tables from a web bean. */ void insertComment(Comment myComment);
# Searches and read-only operations on KillrVideo Keyspace #-------------------------------------------------------------
type Query {
}