File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
roles/tests-unit/files/FWO.Test Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 1- using FWO . Api . Client . Queries ;
1+ using FWO . Api . Client . Queries ;
22using GraphQL ;
33using FWO . Basics ;
44using FWO . Services ;
@@ -60,10 +60,17 @@ public override async Task<QueryResponseType> SendQueryAsync<QueryResponseType>(
6060 }
6161 else if ( responseType == typeof ( List < ModellingAppZone > ) )
6262 {
63- GraphQLResponse < dynamic > response = new ( ) { Data = new List < ModellingAppZone > ( ) { AZExist } } ;
63+ GraphQLResponse < dynamic > response = new ( ) { Data = new List < ModellingAppZone > ( ) { AZExist } } ;
6464
6565 return response . Data ;
6666 }
67+ else if ( responseType == typeof ( List < ModellingAppServer > ) )
68+ {
69+ GraphQLResponse < dynamic > response = new ( ) { Data = new List < ModellingAppServer > ( ) { AppServer1 , AppServer2 } } ;
70+
71+ return response . Data ;
72+ }
73+
6774 throw new NotImplementedException ( ) ;
6875 }
6976 }
You can’t perform that action at this time.
0 commit comments