apollo-language-server
Version:
A language server for Apollo GraphQL projects
22 lines (20 loc) • 454 B
text/typescript
import gql from "graphql-tag";
export const LIST_SERVICES = gql`
query ListServices($id: ID!, $graphVariant: String!) {
frontendUrlRoot
service(id: $id) {
implementingServices(graphVariant: $graphVariant) {
__typename
... on FederatedImplementingServices {
services {
graphID
graphVariant
name
url
updatedAt
}
}
}
}
}
`;