package message
Type Members
- case class CreateIndexRequest(label: String, propNames: Seq[String]) extends Product with Serializable
- case class CreateIndexResponse(accept: Boolean) extends Product with Serializable
- case class CypherRequest(cypher: String, params: Map[String, Any]) extends Product with Serializable
- case class DropIndexRequest(label: String, propName: String) extends Product with Serializable
- case class DropIndexResponse(accept: Boolean) extends Product with Serializable
- case class GetIndexedMetaRequest() extends Product with Serializable
- case class GetIndexedMetaResponse(metaMap: Map[String, Seq[String]]) extends Product with Serializable
- case class GetStatisticsRequest() extends Product with Serializable
- case class GetStatisticsResponse(allNodes: Long, allRelations: Long, nodesCountByLabel: Map[String, Long], relationsCountByType: Map[String, Long], propertiesCountByIndex: Map[String, Long]) extends Product with Serializable
- case class SayHelloRequest(msg: String) extends Product with Serializable
- case class SayHelloResponse(msg: String) extends Product with Serializable
- case class TransactionCommitRequest(uuid: String) extends Product with Serializable
- case class TransactionCommitResponse(msg: String) extends Product with Serializable
- case class TransactionCypherRequest(uuid: String, cypher: String, params: Map[String, Any]) extends Product with Serializable
- case class TransactionRollbackRequest(uuid: String) extends Product with Serializable
- case class TransactionRollbackResponse(msg: String) extends Product with Serializable