Skip to content

Instantly share code, notes, and snippets.

@chris001177
Created June 22, 2019 19:07
Show Gist options
  • Select an option

  • Save chris001177/197fdb26ae95f9eacce03abe6c93f8a8 to your computer and use it in GitHub Desktop.

Select an option

Save chris001177/197fdb26ae95f9eacce03abe6c93f8a8 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