@@ -187,6 +187,7 @@ scalar ObjMap"
187
187
exports [` gRPC Handler Interpreting Protos should load the Empty proto 1` ] = `
188
188
"schema {
189
189
query : Query
190
+ subscription : Subscription
190
191
}
191
192
192
193
directive @enum(value: String) on ENUM_VALUE
@@ -286,6 +287,13 @@ enum ConnectivityState {
286
287
SHUTDOWN
287
288
}
288
289
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
+
289
297
scalar ObjMap"
290
298
` ;
291
299
@@ -453,6 +461,7 @@ scalar ObjMap"
453
461
exports [` gRPC Handler Interpreting Protos should load the Movie proto 1` ] = `
454
462
"schema {
455
463
query : Query
464
+ subscription : Subscription
456
465
}
457
466
458
467
directive @enum(value: String) on ENUM_VALUE
@@ -549,6 +558,13 @@ enum ConnectivityState {
549
558
SHUTDOWN
550
559
}
551
560
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
+
552
568
scalar ObjMap"
553
569
` ;
554
570
@@ -661,6 +677,7 @@ scalar ObjMap"
661
677
exports [` gRPC Handler Interpreting Protos should load the Outside proto 1` ] = `
662
678
"schema {
663
679
query : Query
680
+ subscription : Subscription
664
681
}
665
682
666
683
directive @grpcMethod(rootJsonName: String, objPath: String, methodName: String, responseStream: Boolean) on FIELD_DEFINITION
@@ -767,6 +784,13 @@ input io_xtech_SearchByCastRequest_Input {
767
784
castName : String
768
785
}
769
786
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
+
770
794
scalar ObjMap"
771
795
` ;
772
796
@@ -859,6 +883,7 @@ scalar ObjMap"
859
883
exports [` gRPC Handler Interpreting Protos should load the With Underscores proto 1` ] = `
860
884
"schema {
861
885
query : Query
886
+ subscription : Subscription
862
887
}
863
888
864
889
directive @enum(value: String) on ENUM_VALUE
@@ -955,13 +980,21 @@ enum ConnectivityState {
955
980
SHUTDOWN
956
981
}
957
982
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
+
958
990
scalar ObjMap"
959
991
` ;
960
992
961
993
exports [` gRPC Handler Load proto with prefixQueryMethod should load the retrieve-movie.proto 1` ] = `
962
994
"schema {
963
995
query : Query
964
996
mutation : Mutation
997
+ subscription : Subscription
965
998
}
966
999
967
1000
directive @enum(value: String) on ENUM_VALUE
@@ -1069,5 +1102,12 @@ input io_xtech_SearchByCastRequest_Input {
1069
1102
castName : String
1070
1103
}
1071
1104
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
+
1072
1112
scalar ObjMap"
1073
1113
` ;
0 commit comments