-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add different release channels
- Loading branch information
Showing
23 changed files
with
526 additions
and
47 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"schema": { | ||
"request": { | ||
"url" : "http://localhost:4200/graphql", | ||
"method" : "POST", | ||
"postIntrospectionQuery" : true, | ||
"options" : { | ||
"headers": { | ||
"user-agent" : "JS GraphQL" | ||
} | ||
} | ||
} | ||
}, | ||
"endpoints" : [ | ||
{ | ||
"name": "Default", | ||
"url": "http://localhost:4200/graphql", | ||
"options" : { | ||
"headers": { | ||
"user-agent" : "JS GraphQL" | ||
} | ||
} | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
/* tslint:disable */ | ||
|
||
// ==================================================== | ||
// START: Typescript template | ||
// ==================================================== | ||
|
||
// ==================================================== | ||
// Enums | ||
// ==================================================== | ||
|
||
export enum FileType { | ||
file = 'file', | ||
directory = 'directory', | ||
angularDirectory = 'angularDirectory' | ||
} | ||
|
||
import { Injectable } from '@angular/core'; | ||
|
||
import * as Apollo from 'apollo-angular'; | ||
|
||
import gql from 'graphql-tag'; | ||
// ==================================================== | ||
// END: Typescript template | ||
// ==================================================== |
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
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
Oops, something went wrong.