em-fcmp-graphql-server-lib
Version:
Library that containts the schema and resolvers of the graphql server to be used by FCs
33 lines (28 loc) • 647 B
JavaScript
module.exports = `
input InputDeepLinkServiceSourceConfig {
name: String!
endPoint: String!
options: String
axiosConfig: String
headers: String
baseUrl: String
}
input InputDeepLinkServiceConfig {
# TODO: Define the place to put these values
endPoint: String!
options: String
axiosConfig: String
headers: String
baseUrl: String
}
input InputDeepLinkServiceQuery {
airlineCode: String!
language: String!
siteEdition: String!
}
input InputDeepLinkServiceRequest {
sourceConfig: InputDeepLinkServiceSourceConfig!
query: InputDeepLinkServiceQuery!
settings: GraphQLJSON
}
`;