@@ -187,6 +187,7 @@ scalar ObjMap"
187187exports [` gRPC Handler Interpreting Protos should load the Empty proto 1` ] = `
188188"schema {
189189 query : Query
190+ subscription : Subscription
190191}
191192
192193directive @enum(value: String) on ENUM_VALUE
@@ -286,6 +287,13 @@ enum ConnectivityState {
286287 SHUTDOWN
287288}
288289
290+ type Subscription {
291+ " search movies by the name of the cast"
292+ io_xtech_Example_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.Example" , methodName : " SearchMoviesByCast" , responseStream : true )
293+ " search movies by the name of the cast"
294+ io_xtech_AnotherExample_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.AnotherExample" , methodName : " SearchMoviesByCast" , responseStream : true )
295+ }
296+
289297scalar ObjMap"
290298` ;
291299
@@ -453,6 +461,7 @@ scalar ObjMap"
453461exports [` gRPC Handler Interpreting Protos should load the Movie proto 1` ] = `
454462"schema {
455463 query : Query
464+ subscription : Subscription
456465}
457466
458467directive @enum(value: String) on ENUM_VALUE
@@ -549,6 +558,13 @@ enum ConnectivityState {
549558 SHUTDOWN
550559}
551560
561+ type Subscription {
562+ " search movies by the name of the cast"
563+ io_xtech_Example_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.Example" , methodName : " SearchMoviesByCast" , responseStream : true )
564+ " search movies by the name of the cast"
565+ io_xtech_AnotherExample_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.AnotherExample" , methodName : " SearchMoviesByCast" , responseStream : true )
566+ }
567+
552568scalar ObjMap"
553569` ;
554570
@@ -661,6 +677,7 @@ scalar ObjMap"
661677exports [` gRPC Handler Interpreting Protos should load the Outside proto 1` ] = `
662678"schema {
663679 query : Query
680+ subscription : Subscription
664681}
665682
666683directive @grpcMethod(rootJsonName: String, objPath: String, methodName: String, responseStream: Boolean) on FIELD_DEFINITION
@@ -767,6 +784,13 @@ input io_xtech_SearchByCastRequest_Input {
767784 castName : String
768785}
769786
787+ type Subscription {
788+ " search movies by the name of the cast"
789+ io_xtech_Example_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.Example" , methodName : " SearchMoviesByCast" , responseStream : true )
790+ " search movies by the name of the cast"
791+ io_xtech_AnotherExample_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.AnotherExample" , methodName : " SearchMoviesByCast" , responseStream : true )
792+ }
793+
770794scalar ObjMap"
771795` ;
772796
@@ -859,6 +883,7 @@ scalar ObjMap"
859883exports [` gRPC Handler Interpreting Protos should load the With Underscores proto 1` ] = `
860884"schema {
861885 query : Query
886+ subscription : Subscription
862887}
863888
864889directive @enum(value: String) on ENUM_VALUE
@@ -955,13 +980,21 @@ enum ConnectivityState {
955980 SHUTDOWN
956981}
957982
983+ type Subscription {
984+ " search movies by the name of the cast"
985+ io_xtech_Example_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.Example" , methodName : " SearchMoviesByCast" , responseStream : true )
986+ " search movies by the name of the cast"
987+ io_xtech_AnotherExample_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.AnotherExample" , methodName : " SearchMoviesByCast" , responseStream : true )
988+ }
989+
958990scalar ObjMap"
959991` ;
960992
961993exports [` gRPC Handler Load proto with prefixQueryMethod should load the retrieve-movie.proto 1` ] = `
962994"schema {
963995 query : Query
964996 mutation : Mutation
997+ subscription : Subscription
965998}
966999
9671000directive @enum(value: String) on ENUM_VALUE
@@ -1069,5 +1102,12 @@ input io_xtech_SearchByCastRequest_Input {
10691102 castName : String
10701103}
10711104
1105+ type Subscription {
1106+ " search movies by the name of the cast"
1107+ io_xtech_Example_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.Example" , methodName : " SearchMoviesByCast" , responseStream : true )
1108+ " search movies by the name of the cast"
1109+ io_xtech_AnotherExample_SearchMoviesByCast (input : io_xtech_SearchByCastRequest_Input ): io_xtech_Movie @grpcMethod (rootJsonName : " Root0" , objPath : " io.xtech.AnotherExample" , methodName : " SearchMoviesByCast" , responseStream : true )
1110+ }
1111+
10721112scalar ObjMap"
10731113` ;
0 commit comments