mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
608e4fbb20
https://github.com/hasura/graphql-engine-mono/pull/1546 GitOrigin-RevId: 142b0d0e0ffc35b2679c91c411868c45a8b8e221
266 lines
6.9 KiB
JavaScript
266 lines
6.9 KiB
JavaScript
const { ApolloServer, ApolloError } = require('apollo-server');
|
|
const gql = require('graphql-tag');
|
|
const { print } = require('graphql');
|
|
|
|
const allMessages = [
|
|
{ id: 1, name: "alice", msg: "You win!"},
|
|
{ id: 2, name: "bob", msg: "You lose!"},
|
|
{ id: 3, name: "alice", msg: "Another alice"},
|
|
];
|
|
|
|
const typeDefs = gql`
|
|
type User {
|
|
user_id: Int
|
|
userMessages(whered: MessageWhereInpObj, includes: IncludeInpObj): [Message]
|
|
gimmeText(text: String): String
|
|
}
|
|
|
|
interface Communication {
|
|
id: Int!
|
|
msg: String!
|
|
}
|
|
|
|
type Message implements Communication {
|
|
id: Int!
|
|
name: String!
|
|
msg: String!
|
|
errorMsg: String
|
|
}
|
|
|
|
input MessageWhereInpObj {
|
|
id: IntCompareObj
|
|
name: StringCompareObj
|
|
}
|
|
|
|
input IntCompareObj {
|
|
eq : Int
|
|
gt : Int
|
|
lt : Int
|
|
}
|
|
|
|
input StringCompareObj {
|
|
eq : String
|
|
}
|
|
|
|
input IncludeInpObj {
|
|
id: [Int]
|
|
name: [String]
|
|
}
|
|
|
|
enum MessageStatus {
|
|
READ
|
|
DELIVERED
|
|
SENT
|
|
}
|
|
|
|
type Person implements Name {
|
|
firstName: String
|
|
lastName: String
|
|
age: Int
|
|
}
|
|
|
|
input Dimensions {
|
|
height: Int
|
|
width: Int
|
|
}
|
|
|
|
type Photo {
|
|
height: Int
|
|
width: Int
|
|
}
|
|
|
|
type SearchQuery {
|
|
firstSearchResult: SearchResult
|
|
}
|
|
|
|
union SearchResult = Photo | Person
|
|
|
|
interface Name {
|
|
firstName: String
|
|
lastName: String
|
|
}
|
|
|
|
type Query {
|
|
hello: String
|
|
messages(where: MessageWhereInpObj, includes: IncludeInpObj): [Message]
|
|
user(user_id: Int!): User
|
|
users(user_ids: [Int]!): [User]
|
|
message(id: Int!) : Message
|
|
communications(id: Int): [Communication]
|
|
profilePicture(dimensions: Dimensions): Photo
|
|
}
|
|
`;
|
|
|
|
const resolvers = {
|
|
User: {
|
|
userMessages: (parent, { whered, includes }) => {
|
|
var result = allMessages.filter(m => m.id == parent.user_id);
|
|
if (whered && whered.id) {
|
|
var intExp = whered.id;
|
|
Object.keys(intExp).forEach(op => {
|
|
switch(op) {
|
|
case "eq":
|
|
result = result.filter(m => m.id == intExp[op]);
|
|
break;
|
|
case "gt":
|
|
result = result.filter(m => m.id > intExp[op]);
|
|
break;
|
|
case "lt":
|
|
result = result.filter(m => m.id < intExp[op]);
|
|
break;
|
|
default:
|
|
throw new ApolloError("invalid argument", "invalid");
|
|
}
|
|
});
|
|
}
|
|
if (whered && whered.name) {
|
|
var stringExp = whered.name;
|
|
Object.keys(stringExp).forEach(op => {
|
|
switch(op) {
|
|
case "eq":
|
|
result = result.filter(m => m.name == stringExp[op]);
|
|
break;
|
|
default:
|
|
throw new ApolloError("invalid argument", "invalid");
|
|
}
|
|
});
|
|
}
|
|
|
|
if (includes && includes.id) {
|
|
var ids = includes.id;
|
|
result = result.filter(m => ids.includes(m.id));
|
|
}
|
|
|
|
if (includes && includes.name) {
|
|
var names = includes.name;
|
|
result = result.filter(m => names.includes(m.name));
|
|
}
|
|
|
|
return result;
|
|
},
|
|
|
|
gimmeText: (_, { text }) => {
|
|
if (text) {
|
|
return text;
|
|
} else {
|
|
return "no text";
|
|
}
|
|
}
|
|
},
|
|
|
|
Message: {
|
|
errorMsg : () => {
|
|
throw new ApolloError("intentional-error", "you asked for it");
|
|
}
|
|
},
|
|
|
|
Photo: {
|
|
},
|
|
|
|
Query: {
|
|
hello: () => "world",
|
|
message: (_, { id }) => {
|
|
return allMessages.find(m => m.id == id);
|
|
},
|
|
messages: (_, { where, includes }) => {
|
|
var result = allMessages;
|
|
if (where && where.id) {
|
|
var intExp = where.id;
|
|
Object.keys(intExp).forEach(op => {
|
|
switch(op) {
|
|
case "eq":
|
|
result = result.filter(m => m.id == intExp[op]);
|
|
break;
|
|
case "gt":
|
|
result = result.filter(m => m.id > intExp[op]);
|
|
break;
|
|
case "lt":
|
|
result = result.filter(m => m.id < intExp[op]);
|
|
break;
|
|
default:
|
|
throw new ApolloError("invalid argument", "invalid");
|
|
}
|
|
});
|
|
}
|
|
if (where && where.name) {
|
|
var stringExp = where.name;
|
|
Object.keys(stringExp).forEach(op => {
|
|
switch(op) {
|
|
case "eq":
|
|
result = result.filter(m => m.name == stringExp[op]);
|
|
break;
|
|
default:
|
|
throw new ApolloError("invalid argument", "invalid");
|
|
}
|
|
});
|
|
}
|
|
|
|
if (includes && includes.id) {
|
|
var ids = includes.id;
|
|
result = result.filter(m => ids.includes(m.id));
|
|
}
|
|
|
|
if (includes && includes.name) {
|
|
var names = includes.name;
|
|
result = result.filter(m => names.includes(m.name));
|
|
}
|
|
|
|
return result;
|
|
},
|
|
user: (_, { user_id }) => {
|
|
return { "user_id": user_id };
|
|
},
|
|
users: (parent, args, context, info) => {
|
|
var results = []
|
|
for (userId of args.user_ids) {
|
|
results.push({"user_id":userId})
|
|
}
|
|
return results;
|
|
},
|
|
communications: (_, { id }) => {
|
|
var result = allMessages;
|
|
if(id) {
|
|
result = allMessages.filter(m => m.id == id);
|
|
}
|
|
return result;
|
|
},
|
|
profilePicture: (_, { dimensions }) => {
|
|
return dimensions
|
|
},
|
|
},
|
|
Communication: {
|
|
__resolveType(communication, context, info){
|
|
if(communication.name) {
|
|
return "Message";
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
};
|
|
|
|
class BasicLogging {
|
|
requestDidStart({queryString, parsedQuery, variables}) {
|
|
const query = queryString || print(parsedQuery);
|
|
console.log(query);
|
|
console.log(variables);
|
|
}
|
|
|
|
willSendResponse({graphqlResponse}) {
|
|
console.log(JSON.stringify(graphqlResponse, null, 2));
|
|
}
|
|
}
|
|
|
|
const schema = new ApolloServer(
|
|
{ typeDefs,
|
|
resolvers,
|
|
extensions: [() => new BasicLogging()],
|
|
formatError: (err) => {
|
|
// Stack traces make expected test output brittle and noisey:
|
|
delete err.extensions;
|
|
return err;
|
|
} });
|
|
|
|
schema.listen({ port: process.env.PORT || 4020 }).then(({ url }) => {
|
|
console.log(`schema ready at ${url}`);
|
|
});
|