Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Releases: aerogear/graphback

0.10.0-rc2

23 Nov 17:44
4742316
Compare
Choose a tag to compare
0.10.0-rc2 Pre-release
Pre-release
Merge pull request #513 from aerogear/rc2

0.10.0-rc2

0.10.0-rc1

23 Nov 17:20
204c54b
Compare
Choose a tag to compare
0.10.0-rc1 Pre-release
Pre-release
Merge pull request #512 from aerogear/adding-types

fix: adding missing package crashing Apollo server

0.9.6

07 Nov 14:04
Compare
Choose a tag to compare

Release notes

Fixing problem with client generator not using plural value #448

0.9.5

04 Nov 15:48
Compare
Choose a tag to compare

Release notes

Fixing problem with the master not pointing to the right templates location

0.10.0-dev1

30 Oct 09:13
Compare
Choose a tag to compare
0.10.0-dev1 Pre-release
Pre-release

Dev release

0.9.4

29 Oct 11:24
Compare
Choose a tag to compare

Graphback

Fixes

  • Adjusted node.js engines to the lowest version possible.

0.9.3

29 Oct 10:57
Compare
Choose a tag to compare

Graphback

Fixes

  • Fixed problem with $ missing in client-side queries

0.9.2

24 Sep 11:01
dace4c9
Compare
Choose a tag to compare

Fixing npm issues

0.9.1

23 Sep 16:29
Compare
Choose a tag to compare
fix: DB command hanging out there

0.9.0

22 Sep 20:51
Compare
Choose a tag to compare

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