Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
apollo-fetch
Advanced tools
apollo-fetch
is a lightweight fetch for GraphQL requests that supports the middleware and afterware to modify the request and response.
By default, apollo-fetch
uses isomorphic-fetch
and provides the option of using a custom fetch function.
In addition, apollo-fetch
supports passing a context to the server and receiving a context.
This context can be used by the middleware and afterware.
Simple GraphQL query
import { createApolloFetch } from 'apollo-fetch'
const uri = 'example.com/graphql';
const query = `
query sampleQuery(id: ID!) {
sample(id: $id) {
id,
name
}
}
`
createApolloFetch({uri})({query})
.then((result) => {
// GraphQL data, errors, and extensions plus context from the server
const {data, error, extensions context} = result;
})
.catch((error) => {
//respond to a network error
})
Simple GraphQL mutation with authentication middleware
import { createApolloFetch } from 'apollo-fetch'
const uri = 'example.com/graphql';
const query = `
query sampleMutation(id: ID!) {
addSample(id: $id) {
id,
name
}
}
`
const apolloFetch = createApolloFetch({uri});
apolloFetch.use({applyMiddleware: ({request, options}, next) => {
if (!options.headers) {
options.headers = {}; // Create the headers object if needed.
}
options.headers['authorization'] = 'created token';
next();
}});
apolloFetch({query})
.then((result) => {
// GraphQL data, errors, and extensions plus context from the server
const {data, error, extensions context} = result;
})
.catch((error) => {
//respond to a network error
})
Simple GraphQL mutation with authentication middleware
import { createApolloFetch } from 'apollo-fetch'
const uri = 'example.com/graphql';
const query = `
query sampleMutation(id: ID!) {
addSample(id: $id) {
id,
name
}
}
`
const apolloFetch = createApolloFetch({uri});
apolloFetch.use([{
applyMiddleware: ({ options }, next) => {
if (!options.headers) {
options.headers = {}; // Create the headers object if needed.
}
options.headers['authorization'] = 'created token';
next();
}
});
apolloFetch({query})
.then((result) => {
// GraphQL data, errors, and extensions plus context from the server
const {data, error, extensions context} = result;
})
.catch((error) => {
//respond to a network error
})
Afterware to check the response status and logout on a 401
import { createApolloFetch } from 'apollo-fetch'
const uri = 'example.com/graphql';
const apolloFetch = createApolloFetch({uri});
apolloFetch.useAfter({
applyAfterware: ({ response }, next) => {
if (response.status === 401) {
logout();
}
next();
}
});
apolloFetch({query})
.then((result) => {
// GraphQL data, errors, and extensions plus context from the server
const {data, error, extensions context} = result;
})
.catch((error) => {
//respond to a network error
})
Middleware and Afterware can be chained together in any order:
const apolloFetch = createApolloFetch();
apolloFetch.use([exampleWare1])
.use([exampleWare2])
.useAfter([exampleWare3])
.useAfter([exampleWare4])
.use([exampleWare5]);
createApolloFetch
is a factory for ApolloFetch
, a fetch with middleware and afterware capabilities.
createApolloFetch(options: FetchOptions): ApolloFetch
FetchOptions {
uri?: string;
customFetch?: (request: RequestInfo, init: RequestInit) => Promise<Response>;
}
/* defaults:
* uri = '/graphql'
* customFetch = fetch from isomorphic-fetch
*/
ApolloFetch
, a fetch function with middleware and afterware capabilities.
ApolloFetch {
(operation: GraphQLRequest): Promise<FetchResult>;
use: (middlewares: MiddlewareInterface[]) => ApolloFetch;
useAfter: (afterwares: AfterwareInterface[]) => ApolloFetch;
}
GraphQLRequest
is the argument to an ApolloFetch
call
GraphQLRequest {
query?: string;
variables?: object;
operationName?: string;
context?: object;
}
FetchResult
is the return value of an ApolloFetch
call
FetchResult {
data: any;
errors?: any;
extensions?: any;
context?: object;
}
Middleware used by ApolloFetch
MiddlewareInterface {
applyMiddleware(request: RequestAndOptions, next: Function): void;
}
RequestAndOptions {
request: GraphQLRequest;
options: RequestInit;
}
Afterware used by ApolloFetch
AfterwareInterface {
applyAfterware(response: ResponseAndOptions, next: Function): any;
}
ResponseAndOptions {
response: ParsedResponse;
options: RequestInit;
}
ParsedResponse
adds raw
, the body from the .text() call on the fetch result, and parsed
, the parsed JSON from raw
, onto the regular Response from the fetch call.
ParsedResponse extends Response {
raw: string;
parsed?: any;
}
FAQs
Lightweight implementation of fetch for GraphQL requests
The npm package apollo-fetch receives a total of 14,041 weekly downloads. As such, apollo-fetch popularity was classified as popular.
We found that apollo-fetch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.