Skip to content

Instantly share code, notes, and snippets.

@SaraVieira
Created October 25, 2018 09:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SaraVieira/fd9be02e5587ccd90490bde1f6c254d5 to your computer and use it in GitHub Desktop.
Save SaraVieira/fd9be02e5587ccd90490bde1f6c254d5 to your computer and use it in GitHub Desktop.
const { RESTDataSource } = require("apollo-datasource-rest");
class RandomUser extends RESTDataSource {
constructor() {
super();
this.baseURL = "https://randomuser.me/api/";
}
}
module.exports = RandomUser;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment