Welcome
About GQLify
Building a GraphQL server could be hard! All the maintenance efforts around GraphQL schema, resolver logics and relationship between different APIs really take developers lots of time.
GQLify let developers build a complete GraphQL server with only one datamodel file.
type User @GQLifyModel(dataSource: "memory", key: "users") {
id: ID! @unique @autoGen
username: String!
email: String
books: [Book!]!
}
type Book @GQLifyModel(dataSource: "memory", key: "books") {
id: ID! @unique @autoGen
name: String!
author: User!
}
With datamodel above, you get all the GraphQL APIs with relationship built-in.
✨ See for yourself!
Try this query in our playground
{
books {
id
name
author {
id
username
}
}
}