This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
Releases: aerogear/graphback
Releases · aerogear/graphback
0.10.0-rc2
Merge pull request #513 from aerogear/rc2 0.10.0-rc2
0.10.0-rc1
Merge pull request #512 from aerogear/adding-types fix: adding missing package crashing Apollo server
0.9.6
0.9.5
0.10.0-dev1
Dev release
0.9.4
0.9.3
0.9.2
Fixing npm issues
0.9.1
0.9.0
Graphback-cli
Breaking changes
Templates rely on graphback.json
file. Please rename your config.json
to graphback.json
and add additional configuration entries
"folders": {
"model": "./model",
"resolvers": "./src/resolvers",
"schema": "./src/schema",
"client": "./client/src/graphql"
}
Graphback-CLI
Features
graphback openapi
command provides a way to migrate OpenAPI definition to GraphQL schema
Graphback
Features
- Support for Interfaces in GraphQL schema
GraphQL Schema now supports interfaces that can be used to ensure consistency of the data.
Example:
interface Searchable {
searchPreviewText: String!
}
interface Item {
price: Int!
}
type Movie implements Searchable & Item {
directory: String!
searchPreviewText: String!
price: Int!
}
NOTE: Interfaces will not be taken into consideration when generating resolvers and database