File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
apps/graphql/lib/graphql/schema Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ defmodule GraphQl.Schema.Cluster do
1919
2020 input_object :cluster_ping_attributes do
2121 field :cluster , non_null ( :cluster_attributes ) , description: "the cluster to ping"
22- field :usage , non_null ( :cluster_usage_attributes ) , description: "the usage of the cluster"
22+ field :usage , :cluster_usage_attributes , description: "the usage of the cluster"
2323 end
2424
2525 input_object :cluster_usage_attributes do
Original file line number Diff line number Diff line change @@ -752,7 +752,7 @@ input ClusterPingAttributes {
752752 cluster : ClusterAttributes !
753753
754754 "the usage of the cluster"
755- usage : ClusterUsageAttributes !
755+ usage : ClusterUsageAttributes
756756}
757757
758758input ClusterUsageAttributes {
Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ export type ClusterPingAttributes = {
531531 /** the cluster to ping */
532532 cluster: ClusterAttributes;
533533 /** the usage of the cluster */
534- usage: ClusterUsageAttributes;
534+ usage?: InputMaybe< ClusterUsageAttributes> ;
535535};
536536
537537export type ClusterUsageAttributes = {
You can’t perform that action at this time.
0 commit comments