Skip to content

Commit

Permalink
fix(protos): flag graph traversal as query
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Aug 22, 2024
1 parent 2eac414 commit 2359c1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/protos/io/restorecommerce/graph.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ import "google/protobuf/any.proto";
import "io/restorecommerce/auth.proto";
import "io/restorecommerce/status.proto";
import "io/restorecommerce/resource_base.proto";
import "io/restorecommerce/options.proto";

// Service provides the CRUD operations
service GraphService {
rpc Traversal (TraversalRequest) returns (stream TraversalResponse);
rpc Traversal (TraversalRequest) returns (stream TraversalResponse) {
option (io.restorecommerce.options.is_query) = true;
};
}

message TraversalRequest {
Expand Down

0 comments on commit 2359c1a

Please sign in to comment.