UNPKG

787 BJavaScriptView Raw
1"use strict";
2var __importDefault = (this && this.__importDefault) || function (mod) {
3 return (mod && mod.__esModule) ? mod : { "default": mod };
4};
5Object.defineProperty(exports, "__esModule", { value: true });
6exports.LIST_SERVICES = void 0;
7const graphql_tag_1 = __importDefault(require("graphql-tag"));
8exports.LIST_SERVICES = graphql_tag_1.default `
9 query ListServices($id: ID!, $graphVariant: String!) {
10 frontendUrlRoot
11 service(id: $id) {
12 implementingServices(graphVariant: $graphVariant) {
13 __typename
14 ... on FederatedImplementingServices {
15 services {
16 graphID
17 graphVariant
18 name
19 url
20 updatedAt
21 }
22 }
23 }
24 }
25 }
26`;
27//# sourceMappingURL=listServices.js.map
\No newline at end of file