Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes.d/7217.break.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
GraphQL API: removed `proxies` field from `Task` and `Family` types.
4 changes: 2 additions & 2 deletions cylc/flow/data_messages.proto
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ message PbJob {
}

message PbTask {
reserved 7;
optional string stamp = 1;
optional string id = 2;
optional string name = 3;
optional PbMeta meta = 4;
optional float mean_elapsed_time = 5;
optional int32 depth = 6;
repeated string proxies = 7;
repeated string namespace = 8;
repeated string parents = 9;
optional string first_parent = 10;
Expand Down Expand Up @@ -246,12 +246,12 @@ message PbTaskProxy {
}

message PbFamily {
reserved 6;
optional string stamp = 1;
optional string id = 2;
optional string name = 3;
optional PbMeta meta = 4;
optional int32 depth = 5;
repeated string proxies = 6;
repeated string parents = 7;
repeated string child_tasks = 8;
repeated string child_families = 9;
Expand Down
Loading
Loading