Skip to content
Snippets Groups Projects
graphresponse.proto 312 B
Newer Older
  • Learn to ignore specific revisions
  • syntax="proto3";
    package pb;
    
    message UidList {
      repeated fixed64 uids = 1;
    }
    
    message Result {
      repeated bytes values = 1;
      repeated UidList uidmatrix = 2;
    }
    
    message GraphResponse {
      string attribute = 1;
      repeated GraphResponse children = 2; //Each node can have multiple children
      Result result = 3;
    }