@@ -194,6 +194,72 @@ export interface CheckSchemaVariables {
194194/* eslint-disable */
195195// This file was automatically generated and should not be edited.
196196
197+ // ====================================================
198+ // GraphQL query operation: ListServices
199+ // ====================================================
200+
201+ export interface ListServices_service_implementingServices_NonFederatedImplementingService {
202+ __typename : "NonFederatedImplementingService" ;
203+ }
204+
205+ export interface ListServices_service_implementingServices_FederatedImplementingServices_services {
206+ __typename : "FederatedImplementingService" ;
207+ /**
208+ * Identifies which graph this implementing service belongs to.
209+ * Formerly known as "service_id"
210+ */
211+ graphID : string ;
212+ /**
213+ * Specifies which variant of a graph this implementing service belongs to".
214+ * Formerly known as "tag"
215+ */
216+ graphVariant : string ;
217+ /**
218+ * Name of the implementing service
219+ */
220+ name : string ;
221+ /**
222+ * URL of the graphql endpoint of the implementing service
223+ */
224+ url : string | null ;
225+ /**
226+ * Timestamp for when this implementing service was updated
227+ */
228+ updatedAt : any ;
229+ }
230+
231+ export interface ListServices_service_implementingServices_FederatedImplementingServices {
232+ __typename : "FederatedImplementingServices" ;
233+ services : ListServices_service_implementingServices_FederatedImplementingServices_services [ ] ;
234+ }
235+
236+ export type ListServices_service_implementingServices = ListServices_service_implementingServices_NonFederatedImplementingService | ListServices_service_implementingServices_FederatedImplementingServices ;
237+
238+ export interface ListServices_service {
239+ __typename : "Service" ;
240+ /**
241+ * Implementing services that comprise a graph.
242+ * Set includeDeleted to see deleted implementing services
243+ */
244+ implementingServices : ListServices_service_implementingServices | null ;
245+ }
246+
247+ export interface ListServices {
248+ /**
249+ * Service by ID
250+ */
251+ service : ListServices_service | null ;
252+ }
253+
254+ export interface ListServicesVariables {
255+ id : string ;
256+ graphVariant : string ;
257+ }
258+
259+ /* tslint:disable */
260+ /* eslint-disable */
261+ // This file was automatically generated and should not be edited.
262+
197263// ====================================================
198264// GraphQL mutation operation: RegisterOperations
199265// ====================================================
0 commit comments