Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/curly-rivers-complain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'apollo-angular': patch
---

Export MutationOptionsAlone, QueryOptionsAlone, SubscriptionOptionsAlone, WatchQueryOptionsAlone
from 'apollo-angular'
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ jobs:

- name: Setup E2E tests
run: |
sudo apt-get update
sudo apt-get install libgtk2.0-0t64 libgtk-3-0t64 libgbm-dev libnotify-dev libnss3 libxss1 libasound2t64 libxtst6 xauth xvfb
(cd testapp && yarn add -D cypress-fail-on-console-error)

Expand Down
14 changes: 9 additions & 5 deletions packages/apollo-angular/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ export { Mutation } from './mutation';
export { Subscription } from './subscription';
export { APOLLO_OPTIONS, APOLLO_NAMED_OPTIONS, APOLLO_FLAGS } from './tokens';
export type {
NamedOptions,
SubscriptionResult,
WatchQueryOptions,
ExtraSubscriptionOptions,
MutationResult,
Flags,
VariablesOf,
MutationOptionsAlone,
MutationResult,
NamedOptions,
QueryOptionsAlone,
ResultOf,
SubscriptionOptionsAlone,
SubscriptionResult,
VariablesOf,
WatchQueryOptions,
WatchQueryOptionsAlone,
} from './types';
export { gql, graphql } from './gql';
Loading