@@ -12,6 +12,10 @@ class RuntimeModuleType < Types::BaseObject
1212 description : 'Configuration definitions of the runtime module' ,
1313 method : :module_configuration_definitions
1414 field :data_types , Types ::DataTypeType . connection_type , null : false , description : 'Data types of the runtime module'
15+ field :definitions , Types ::RuntimeModuleDefinitionType . connection_type ,
16+ null : false ,
17+ description : 'Endpoint definitions of the runtime module' ,
18+ method : :runtime_module_definitions
1519 field :descriptions , [ Types ::TranslationType ] , null : true , description : 'Descriptions of the runtime module'
1620 field :documentation , String , null : false , description : 'Documentation URL of the runtime module'
1721 field :flow_types , Types ::FlowTypeType . connection_type , null : false , description : 'Flow types of the runtime module'
@@ -25,6 +29,10 @@ class RuntimeModuleType < Types::BaseObject
2529 field :runtime_flow_types , Types ::RuntimeFlowTypeType . connection_type ,
2630 null : false ,
2731 description : 'Runtime flow types of the runtime module'
32+ field :status , Types ::RuntimeModuleStatusType ,
33+ null : false ,
34+ description : 'The status of the runtime module' ,
35+ method : :ensure_runtime_module_status!
2836 # rubocop:disable GraphQL/ExtractType
2937 field :runtime_function_definitions , Types ::RuntimeFunctionDefinitionType . connection_type ,
3038 null : false ,
0 commit comments