Newer
Older
// To compile this file run the command below from inside the pb directory
// protoc --go_out=plugins=grpc:. *.proto
service DGraph {
}
message GraphRequest {
string query = 1;
}
message GraphResponse {
string attribute = 1;
map<string, bytes> values = 2;
repeated GraphResponse children = 3; // Each node can have multiple children