Created
December 26, 2019 13:23
-
-
Save danstarns/ff911579b0c402ae97264577ffc6c4b1 to your computer and use it in GitHub Desktop.
idio-graphql Scalars example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { combineNodes, GraphQLNode, IdioScalar } = require("idio-graphql"); | |
const { ApolloServer } = require("apollo-server"); | |
const { GraphQLJSON } = require("graphql-type-json"); | |
const gql = require("graphql-tag"); | |
const JSONScalar = new IdioScalar({ | |
name: "JSON", | |
resolver: GraphQLJSON | |
}); | |
const User = new GraphQLNode({ | |
name: "User", | |
typeDefs: gql` | |
type User { | |
id: ID | |
name: String | |
age: Int | |
data: JSON | |
} | |
type Query { | |
user(id: ID!): User | |
} | |
`, | |
resolvers: { | |
Query: { | |
user: (parent, { id }) => { } | |
} | |
} | |
}); | |
async function main() { | |
const { typeDefs, resolvers } = await combineNodes([User], { | |
scalars: [JSONScalar] | |
}); | |
const server = new ApolloServer({ typeDefs, resolvers }); | |
await server.listen(4000); | |
console.log(`Server up on port 4000 🚀`); | |
} | |
main(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment