Skip to content

Commit

Permalink
feat: Remove graphql dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ilijaNL committed Mar 16, 2023
1 parent ed9e179 commit bc2465c
Show file tree
Hide file tree
Showing 20 changed files with 1,145 additions and 4,008 deletions.
1 change: 0 additions & 1 deletion .github/FUNDING.yml

This file was deleted.

9 changes: 7 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Build and release

on: workflow_dispatch

permissions:
contents: write
pull-requests: write
issues: write

jobs:
build:
name: Build
Expand Down Expand Up @@ -58,7 +63,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0 # necessary for correct CHANGELOGS
- name: Set up node
uses: actions/setup-node@v3
Expand All @@ -73,6 +78,6 @@ jobs:
name: build
- name: Release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn release
322 changes: 322 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

7 changes: 1 addition & 6 deletions PROTOCOL.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,7 @@ The server needs only keep track of IDs for as long as the subscription is activ
interface SubscribeMessage {
id: '<unique-operation-id>';
type: 'subscribe';
payload: {
operationName?: string | null;
query: string;
variables?: Record<string, unknown> | null;
extensions?: Record<string, unknown> | null;
};
payload: <Your own type>;
}
```

Expand Down
Loading

0 comments on commit bc2465c

Please sign in to comment.