Skip to content
Snippets Groups Projects
graphresponse.proto 430 B
Newer Older
  • Learn to ignore specific revisions
  • // To compile this file run the command below from inside the pb directory
    // protoc --go_out=plugins=grpc:. *.proto
    
    
    syntax="proto3";
    package pb;
    
    
    Pawan Rawal's avatar
    Pawan Rawal committed
      rpc Query (GraphRequest) returns (GraphResponse) {}
    
    message GraphResponse {
      string attribute = 1;
    
      map<string, bytes> values = 2;
      repeated GraphResponse children = 3; // Each node can have multiple children