apollo-datasource-graphql icon indicating copy to clipboard operation
apollo-datasource-graphql copied to clipboard

GraphQL/Apollo DataSource to connect to GraphQL API's from your Apollo Server

Results 11 apollo-datasource-graphql issues
Sort by recently updated
recently updated
newest added

Hi, I'm using `apollo-datasource-graphql`, but I'm wondering if it would be possible to generate a `@types/apollo-datasource-graphql` so that I can fix the `implicit-any` error generated by TS? Thanks!

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.5 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.5&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

I'm trying to leverage the Github v4 graphql api as a data source and as per the instructions, I modified the request object with an authorization header. I receive `401`...

Getting below vulnerability for `apollo-datasource-graphql@^1.3.2` ``` === npm audit security report === ┌──────────────────────────────────────────────────────────────────────────────┐ │ Manual Review │ │ Some vulnerabilities require your attention to resolve │ │ │ │ Visit...

Graphql version is now up to 15.3.0. Your package is throwing duplicate instances of GraphQL errors when trying to package everything together using serverless-webpack because your package is so far...

For cases where we don't need to change the headers per request, and we're using Graphql servers that support a WebSocket Link transport, it would be beneficial to use a...

Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.12.0 to 3.13.1. Changelog *Sourced from [js-yaml's changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md).* > 3.13.1 / 2019-04-05 > ------------------- > > - Fix possible code execution in (already unsafe) `.load()`, [#480](https://github-redirect.dependabot.com/nodeca/js-yaml/issues/480). >...

dependencies

After trying out your library we discovered that your call to `makePromise` is highly inefficient since it takes 2.5s for each query. It gets especially since it takes multiples of...

Currently the GraphQLDataSource package kind of follows RESTDataSource, but also uses ApolloLink infrastructure. It'd be great to have this basically like using ApolloClient, e.g. ```js class MyApi extends GraphQLDataSource {...

Hi, Following is my code based on README.MD: ``` async search() { try { console.log("this.baseURL = " + this.baseURL); const response = await this.query(QUERY_SEARCH); return response.data.search; } catch (error) {...