Skip to content

Commit

Permalink
Graphql endpoint url/schema bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Raathigesh committed Jun 5, 2016
1 parent 86ed262 commit f9359ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "atmo",
"version": "0.3.0",
"description": "Mock API server with UI",
"version": "0.4.0",
"description": "Mocking Http, Socket, Graphql Endpoints made with ease through UI",
"main": "src/server/index.js",
"scripts": {
"start": "nodemon src/server/index.js",
Expand Down
4 changes: 2 additions & 2 deletions src/client/models/graphql/GraphqlEndpoint.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ export default class GraphqlEndpoint {
type;

constructor(url, schema) {
this.url = schema;
this.url = url;
this.schema = schema;
this.type = 'gql';
this.type = 'gql';
}

setUrl(url) {
Expand Down

0 comments on commit f9359ee

Please sign in to comment.