1.9.0 • Published 5 years ago

apollo-angular-link-http-batch v1.9.0

Weekly downloads
2,007
License
MIT
Repository
github
Last release
5 years ago

HTTP Link

npm version Get on Slack

Purpose

An Apollo Link to combine multiple GraphQL operations into single HTTP request.

Installation

npm install apollo-angular-link-http-batch --save

Usage

import {
  HttpBatchLinkModule,
  HttpBatchLink,
} from 'apollo-angular-link-http-batch';

@NgModule({
  imports: [HttpBatchLinkModule],
})
class AppModule {
  constructor(httpLink: HttpBatchLink) {
    const link = httpLink.create({uri: '/graphql'});
  }
}

HttpClient

The HTTP Link relies on having HttpClient (from @angular/common/http) present in your application.

Options

Accepts the same options as apollo-angular-link-http.

BatchOptions

The batching options indicate how operations are batched together.

namevaluedefaultrequired
batchIntervalnumber10false
batchMaxnumber10false
batchKeyFunction-false
  • batchInterval - the maximum time a batch will wait before automatically being sent over the network
  • batchMax - the size of batches
  • batchKey a function that accepts an operation and returns a string key, which uniquely names the batch the operation belongs to, defaults to returning the same string.

NOTICE: batchKey by default batches together requests with the same uri and the same options. Since options from an operation's context overwrites those from a link you could end up with few differents keys and what it means, few separate requests.

Context

Works in the same way as in apollo-angular-link-http.

To skip batching you can set skipBatching: true in operation's context.

NOTICE: skipBatching works only with the default batchKey. To create custom one you should check if skipBatching is set in context and generate a random batchKey for that operation.

1.9.0

5 years ago

1.8.0

5 years ago

1.8.0-alpha.0

5 years ago

2.0.0-alpha.6

6 years ago

2.0.0-alpha.3

6 years ago

2.0.0-alpha.5

6 years ago

2.0.0-alpha.2

6 years ago

2.0.0-alpha.1

6 years ago

1.7.0

6 years ago

1.6.1-alpha.0

6 years ago

1.6.0

6 years ago

1.5.0

6 years ago

1.4.0

7 years ago

1.4.0-rc.0

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.2.0-rc.0

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.1.0-rc.0

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

1.0.0-beta.1

7 years ago

1.0.0-beta.0

7 years ago